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. 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) myint = 121231;
mydouble = -123.122; // double (signed double) mydouble = -123.122;
mystring = "cool string"; // string mystring = "cool string";
mychar = 'c'; // char mychar = 'c'; // char
myfunction = { printf[ "hello world" ]; }; (statement list) myfunction = { printf[ "hello world" ]; }; (statement list)
``` ```

Loading…
Cancel
Save