This page (revision-270) was last changed on 26-Mar-2023 02:03 by Administrator 

This page was created on 20-Feb-2010 19:16 by Carsten Strotmann

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
270 26-Mar-2023 02:03 17 KB Administrator to previous
269 26-Mar-2023 02:02 17 KB Administrator to previous | to last
268 26-Mar-2023 02:01 17 KB Administrator to previous | to last
267 26-Mar-2023 02:00 17 KB Administrator to previous | to last ACTION Source Code ==> Action Source Code
266 26-Mar-2023 01:59 17 KB Administrator to previous | to last
265 26-Mar-2023 01:58 17 KB Administrator to previous | to last
264 26-Mar-2023 01:56 17 KB Administrator to previous | to last Remove links to delete manual pages
263 26-Mar-2023 01:22 17 KB Administrator to previous | to last Fix SF links
262 26-Mar-2023 01:21 17 KB Administrator to previous | to last
261 26-Mar-2023 01:18 17 KB Administrator to previous | to last Move manuals to Sourceforge

Page References

Incoming links Outgoing links
Action

Version management

Difference between version and

At line 20 added 5 lines
\\
; Hello world in Action! programming language for the Atari 8-Bit computers\\
PROC Main()\\
PrintE("Hello World!")\\
RETURN\\
At line 21 removed 5 lines
; Hello world in Action! programming language for the Atari 8-Bit computers
PROC Main()
PrintE("Hello World!")
RETURN
At line 29 changed 16 lines
; Hello world in a loop
PROC Main()
BYTE RTCLOK=20, ; address of system timer
CONSOL=$D01F ; address of the key-pressed register
CARD TIME
RTCLOK=0 ; reset the clock
WHILE CONSOL>6
DO
PRINTE("Hello World!")
OD
TIME = RTCLOK
PRINTF("Ran for: %E %U jiffies",TIME)
RETURN
\\
; Hello world in a loop\\
PROC Main()\\
BYTE RTCLOK=20, ; address of system timer\\
CONSOL=$D01F ; address of the key-pressed register\\
CARD TIME\\
\\
RTCLOK=0 ; reset the clock\\
WHILE CONSOL>6\\
DO\\
PRINTE("Hello World!")\\
OD\\
TIME = RTCLOK\\
PRINTF("Ran for: %E %U jiffies",TIME)\\
RETURN\\
\\