RosettaCodeData/Task/Command-line-arguments/XPL0/command-line-arguments.xpl0

8 lines
107 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
int C;
[loop [C:= ChIn(8);
if C = \EOF\$1A then quit;
ChOut(0, C);
];
CrLf(0);
]