tokay 0.6.6

Tokay is a programming language designed for ad-hoc parsing.
Documentation
#testmode:repl
# Tests for float, including float constuctor

float(10)
(f = float("12.5"))
float("12.34.5")
float((1, 2))

f.ceil
f.trunc
f.fract

12.5.ceil
12.5.trunc
12.5.fract

#---
#10
#12.5
#0
#ERR:Line 1, column 1: `list` cannot be converted to float
#13
#12
#0.5
#13
#12
#0.5