Category:ALGOL 60: Difference between revisions

From Rosetta Code
Content added Content deleted
(Stop infoboxes from overlapping, add link to wikipedia)
(→‎See also: Link to the Wikipedia Algol 60 page)
 
(6 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{stub}}{{language}}
{{stub}}{{language|bnf=http://www.masswerk.at/algol60/syntax.txt}}

See these links for information on how to run Algol 60 programs:
* https://www.linuxvoice.com/algol-the-language-of-academia/
* https://www.gnu.org/software/marst/

Compiling and running Hello World with GNU Marst looks like this:
<syntaxhighlight lang="bash">
marst hello.alg -o hello.c
gcc hello.c -lalgol -lm -o hello
./hello
</syntaxhighlight>

==See also==
==See also==
*[[wp:ALGOL|ALGOL 60 on Wikipedia]]
*[[wp:ALGOL|ALGOL on Wikipedia]]
*[[wp:ALGOL 60|ALGOL 60 on Wikipedia]]
*[[ALGOL 68]]
*[[ALGOL 68]]
*[[ALGOL W]]
*[[Simula]]

Latest revision as of 15:13, 24 October 2022

This page is a stub. It needs more information! You can help Rosetta Code by filling it in!
Language
ALGOL 60
This programming language may be used to instruct a computer to perform a task.
See Also:
Listed below are all of the tasks on Rosetta Code which have been solved using ALGOL 60.

See these links for information on how to run Algol 60 programs:

Compiling and running Hello World with GNU Marst looks like this:

marst hello.alg -o hello.c
gcc hello.c -lalgol -lm -o hello
./hello

See also