We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP 0.3.0
0.3.0
Support list (배열) data type.
[ ... ]
Support built-in functions for list.
길이(list)
list
넣기(list, item)
item
빼기(list)
쓰기(list)
Support table (표) data type.
{ ... }
Support built-in functions for table.
길이(table)
table
넣기(table, key, value)
key
value
빼기(table, key)
쓰기(table)
Support comment
The text was updated successfully, but these errors were encountered:
wcho21
No branches or pull requests
WIP
0.3.0
New data types
List (배열)
Support list (배열) data type.
[ ... ]
.Support built-in functions for list.
길이(list)
: get length oflist
.넣기(list, item)
: pushitem
tolist
.빼기(list)
: pop an item fromlist
.쓰기(list)
: writelist
as a stringTable (표)
Support table (표) data type.
{ ... }
.Support built-in functions for table.
길이(table)
: get length oftable
.넣기(table, key, value)
: pushkey
andvalue
pair totable
.빼기(table, key)
: pop a value withkey
fromtable
.쓰기(table)
: writetable
as a stringComment
Support comment
The text was updated successfully, but these errors were encountered: