Rosetta Code:Solve a Task: Difference between revisions

Content added Content deleted
(Undo revision 330105 by Dario771 (talk) Not the place for task solutions)
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|Ayrch}}==
=={{header|DBL}}==
<lang Ayrch>PRINT "Hello World"</lang>
<lang Ayrch>
;
; 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=