Rosetta Code:Solve a Task: Difference between revisions

Content added Content deleted
Line 12: Line 12:
It is best to read the task thoroughly, solve it, and check your solution ''before'' starting to edit the Rosetta Code page, (especially for tasks needing more than a very short solution).
It is best to read the task thoroughly, solve it, and check your solution ''before'' starting to edit the Rosetta Code page, (especially for tasks needing more than a very short solution).


=={{header|DBL}}==
=={{header|Ayrch}}==
<lang Ayrch>
<lang Ayrch>PRINT "Hello World"</lang>
;
; Hello world
; by Dario B.
;
PROC
;---------------------------------------------------------------------
XCALL FLAGS (0007000000,1) ;Suppress STOP message

OPEN (1,O,'TT:')
WRITES (1,"Hello world")

DISPLAY (1,"Hello world",10)
DISPLAY (1,$SCR_MOV(-1,12),"again",10) ;move up, right and print

CLOSE 1
END
</lang>


=Going a little further=
=Going a little further=