cemc 0.1.2

Cem language compiler - A concatenative language with green threads and linear types
Documentation
1
2
3
4
5
6
: test_scheduler ( -- Int )
    5           # Push 5 onto stack
    test_yield  # Yield (currently a no-op in Phase 1)
    10          # Push 10 onto stack
    add         # Add them: 5 + 10 = 15
;