To extract save in desired directory and issue command tar xzf tr.tar.gz
tar ballThe aim is to follow the following standard, to date all the work has not been done
| Constants start with | # |
| Variables start with | % |
| Counted string words starts with a | $ |
| Words that return a flag end with | ? |
| We use _ to seperate words | _ |
| Print words start with a | . |
| Words to be used with TO end with a | @ |
| Hex numbers | & |
| Words that deal with a string described on stack | " |
| Zero terminated strings ( we try not to use them) | z" |
| Words that belong to the kernel and will never be documented and should not be used in applications start with a | _ |
| In the kernel immediate words runtime code starts with | _do_ |
ANS words are in capitals, ANS words that don't follow the standard are left that way. For instance WORD should really be $WORD as it returns a counted string. The system is case sensative. This is a system that forces you to learn the ANS standard, that might be a good thing.