feat: Implement built-in functions (len, type)

This commit is contained in:
Alvin
2025-07-22 18:23:41 +02:00
parent 8e305629b8
commit 244647e6a3
2 changed files with 22 additions and 2 deletions

10
examples/built_ins.fem Normal file
View File

@@ -0,0 +1,10 @@
my_string is "Hello"
my_list is [1, 2, 3]
UwU Boy len(my_string)
UwU Boy len(my_list)
UwU Boy type(my_string)
UwU Boy type(my_list)
UwU Boy type(123)
UwU Boy type(Kawaii)