A language built for fun
This project is maintained by cometlang
inherits Object
There are two singleton instances of Boolean in the interpreter accessible via the keywords true
and false
Boolean(value) Takes a single argument, and converts to a boolean, based on the truthiness of the value.
to_string()
returns either “true” or “false”parse(value)
parses either a string (case insensitively) or an integer (following the C rules) or falling back to the truthiness of the value==
compares by truthiness