Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
10
Task/Loops-While/DCL/loops-while.dcl
Normal file
10
Task/Loops-While/DCL/loops-while.dcl
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
$ i = 1024
|
||||
$Loop:
|
||||
$ IF ( i .LE. 0 ) THEN GOTO LoopEnd
|
||||
$ WRITE sys$output F$FAO( " i = !4UL", i ) ! formatted ASCII output, fixed-width field
|
||||
$ ! Output alternatives:
|
||||
$ ! WRITE sys$output F$STRING( i ) ! explicit integer-to-string conversion
|
||||
$ ! WRITE sys$output i ! implicit conversion to string/output
|
||||
$ i = i / 2
|
||||
$ GOTO Loop
|
||||
$LoopEnd:
|
||||
Loading…
Add table
Add a link
Reference in a new issue