RosettaCodeData/Task/Count-in-octal/BCPL/count-in-octal.bcpl
2023-07-01 13:44:08 -04:00

9 lines
127 B
Text

get "libhdr"
let start() be
$( let x = 0
$( writeo(x)
wrch('*N')
x := x + 1
$) repeatuntil x = 0
$)