Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 909 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 909 Bytes

Tome

Codacy Badge

Tome is an educational programming language with English-like syntax. It's made for people who are novice coders to help them learn programming. It compiles down into Javascript. You can try it out without even leaving your browser or have a short read about Tome's features.

Examples

Check out these example Tome programs:

This is the Hello World program.

Show "Hello World".
(It's that easy!)

You can probably figure out what the programs below do just by looking at them.

Count until a reaches 20:
Show "'a' is now: " + a.
End.
Set food as ["pie", "cake", "muffins"].
For every item in food do:
Show "Mmm, I'd love some " + item + " right now!".
End.