Update README.md

master
xerox 5 years ago
parent 135c6705fe
commit d3bceaabf1

@ -38,9 +38,9 @@ Requirements to making a program:
Variables are stored in a hashmap for quick and easy access. Variables also support type juggling. When you define a variable its type will be assumed when parsed.
```
myint = 121231; // double (unsigned long)
mydouble = -123.122; // double (signed double)
mystring = "cool string"; // string
myint = 121231;
mydouble = -123.122;
mystring = "cool string";
mychar = 'c'; // char
myfunction = { printf[ "hello world" ]; }; (statement list)
```

Loading…
Cancel
Save