cemc 0.1.2

Cem language compiler - A concatenative language with green threads and linear types
Documentation
1
2
3
4
5
6
# hello_io.cem - Hello World with I/O
#
# This is the real Hello World - it actually prints!

: main ( -- )
  "Hello, World!" write_line ;