dashboard
repositories
filestore
activity
search
login
main
/
voidscript
A simple scripting language in C++
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
fix object accessing
Ferenc Szontágh
2025-04-18
68693bb7b71bb5721bdda9dc16948b750ea71065
[voidscript.git]
/
tmp_valid.vs
1
2
3
4
object $o = { int age: 11 };
printnl("Age: ",$o->age);
printnl("Type: ", typeof($o));
printnl("Type: ", typeof($o->age));