cemc 0.1.2

Cem language compiler - A concatenative language with green threads and linear types
Documentation
1
2
3
4
5
6
# echo.cem - Echo program with async I/O
#
# Reads a line from stdin and writes it to stdout

: echo ( -- )
  read_line write_line ;