Interactive Active ALGOL 68: Difference between revisions

From Rosetta Code
Content added Content deleted
m (* Download - [http://www.nunan.fsnet.co.uk/algol68/a68mk2.zip])
 
(Add sample: Hello, world!)
Line 1: Line 1:
{{implementation|ALGOL 68}}{{stub}}
{{implementation|ALGOL 68}}{{stub}}
==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:
{|border="1" style="border-collapse: collapse; border: 5px double grey;" align="center"
|| 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==
==See also==
* Download incremental ALGOL 68 compiler - [http://www.nunan.fsnet.co.uk/algol68/a68mk2.zip]
* Download incremental ALGOL 68 compiler - [http://www.nunan.fsnet.co.uk/algol68/a68mk2.zip]

Revision as of 23:26, 12 January 2009

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]