Expand type system #2
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Currently the only types that exist are
Number,Point, andLine. Once we implementif, it'd be nice to have a real boolean type instead of just using1and0astrueandfalse.Lists might also be useful
we now also have
String,List,Struct, andFunction, althoughListmostly exists as an intermediate in the construction of points, or when passing arguments to functions, and there's no way to access the elements of a list.Maybe it would make sense to have a
Routetype, and make it constructable using normal operators; this could eliminate theroutestatement from the parser, which is one of the more complicated ones.