cemc 0.1.2

Cem language compiler - A concatenative language with green threads and linear types
Documentation
1
2
3
4
5
# multiply.cem - Test multiplication

# Multiply 6 * 7 = 42
: product ( -- Int )
  6 7 * ;