Measures Concepts
GitHub icon

ADLIB

ADLIB - Programming language

< >

ADLIB is a programming language created in 1980.

#3464on PLDB 44Years Old


Language features

Feature Supported Token Example
Conditionals ✓
While Loops ✓
Booleans ✓
Strings ✓
Assignment ✓
Case Insensitive Identifiers ✓
s := (A + a + A);
Print() Debugging ✓
Function Overloading ✓
program Adhoc;

function Add(x, y : Integer) : Integer;
begin
    Add := x + y
end;

function Add(s, t : String) : String;
begin
    Add := Concat(s, t)
end;

begin
    Writeln(Add(1, 2));                   (* Prints "3"             *)
    Writeln(Add('Hello, ', 'World!'));    (* Prints "Hello, World!" *)
end.
MultiLine Comments ✓
(* A comment
*)
Comments ✓
{ This is a single line comment in pascal. But needs to be closed. }
Polymorphism ✓
Case Sensitivity X
Semantic Indentation X
Operator Overloading X
Line Comments X

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout