Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
4
Task/Character-codes/ALGOL-68/character-codes-1.alg
Normal file
4
Task/Character-codes/ALGOL-68/character-codes-1.alg
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
main:(
|
||||
printf(($gl$, ABS "a")); # for ASCII this prints "+97" EBCDIC prints "+129" #
|
||||
printf(($gl$, REPR 97)) # for ASCII this prints "a"; EBCDIC prints "/" #
|
||||
)
|
||||
4
Task/Character-codes/ALGOL-68/character-codes-2.alg
Normal file
4
Task/Character-codes/ALGOL-68/character-codes-2.alg
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
FILE tape;
|
||||
INT errno = open(tape, "/dev/tape1", stand out channel)
|
||||
make conv(tape, ebcdic conv);
|
||||
FOR record DO getf(tape, ( ~ )) OD; ~ # etc ... #
|
||||
1
Task/Character-codes/ALGOL-68/character-codes-3.alg
Normal file
1
Task/Character-codes/ALGOL-68/character-codes-3.alg
Normal file
|
|
@ -0,0 +1 @@
|
|||
make conv(tape, stand conv(stand out channel))
|
||||
Loading…
Add table
Add a link
Reference in a new issue