Releases: Nirlep5252/fun
Releases · Nirlep5252/fun
fun_v1.1
v1
🚀 Lets go!
This release includes:
- Basic operations on
number
datatype. boolean
datatype, comparison operators, logical operators.show
keyword to print output.- Variables (
let
keyword) which can be mutable or not usingmut
keyword. - Scopes
- Condition statements (
if
,else
) - Loops (
for
,while
) (there is nobreak
orcontinue
though) - User defined functions (
fn
keyword) and 1 builtin function (time()
) - User input using
get
keyword
Building this project has helped me a lot in learning some fundamentals of how to build interpreters, design and parse language, and more thanks to the amazing book Crafting Interpreters by Bob