Interactive Active ALGOL 68: Difference between revisions

From Rosetta Code
Content added Content deleted
m (→‎Sample: typo)
(lang -> syntaxhighlight)
 
(2 intermediate revisions by one other user not shown)
Line 10: Line 10:
|-
|-
||
||
print(("Hello, world!",new line))
<syntaxhighlight lang=algol68>print(("Hello, world!",new line))</syntaxhighlight>
||
||
<syntaxhighlight lang=algol68>main:(
main:(
print(("Hello, world!",new line))
print(("Hello, world!",new line))
)</syntaxhighlight>
)
||
||
*LIB transput
<syntaxhighlight lang=algol68>*LIB transput
print (("Hello, world!", new line))
print (("Hello, world!", new line))</syntaxhighlight>
|}
|}



Latest revision as of 19:55, 26 August 2022

Interactive Active ALGOL 68 is an implementation of ALGOL 68. Other implementations of ALGOL 68.
This page is a stub. It needs more information! You can help Rosetta Code by filling it in!

Sample

With Interactive Active ALGOL 68 it may be necessary to include appropriate "job cards" or precludes in order for the programs to compile successfully. Example:

Brief Algol68 Algol68 as in rosettacode Actual Interactive Active ALGOL 68 code
print(("Hello, world!",new line))
main:(
  print(("Hello, world!",new line))
)
*LIB transput
print (("Hello, world!", new line))

See also

  • Download incremental ALGOL 68 compiler - [1]