Croissant Runtime
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
crsn/examples/stdio_rev.csn

9 lines
173 B

(
(mkbf r7)
(:r)(ld r0 @cin)
(cmp r0 '\n' (eq? (j :q)))
(bfpush @r7 r0)
(j :r)
(:q)(bfpop @cout @r7 (nem? (j :q)))
(ld @cout '\n')
)