Cont

Cont is compiled concatenative programming language written in Python and heavily inspired by Porth.

Examples

Hello world

include std.cn

"Hello, world!\n" puts

Fibanacci numbers

0 1 150 
1 while
  rot swap dup 
  rot + swap
  dup print
  rot 1 - 
  dup 0 > 
end 

GitHub

View Github