all repos — hex @ d3f3625a21c74f3eb771397dcf22a6edebfb7e51

A tiny, minimalist, slightly-esoteric concatenative programming lannguage.

tests.hex

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
(
    "current-test" store
    (current-test i)
        ("." print)
        ("\nTest Failed: " print current-test print "\n" print)
    if
) "test" store

(0x1 0x1 ==) test i
(0x1 0x1 ==) test i
"" puts