Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 889 Bytes

Readme.md

File metadata and controls

26 lines (22 loc) · 889 Bytes

My programing language

This is my first attempt of creating a "toy programing language" from scratch. It is an interpreted dynamicaly typed language in which everything is an expression. You can read language details here

Futures

These are main futures i want to support in the language.

  • basic types
  • math expressions
  • variables
  • conditional logic with ifs
  • while & for loops
  • functions
  • lists

Project state

This project is not fully polished, it lacks unit tests for evaluation of some language constructs even if they work. Parsing is finished tho.

Usage

To run the interpreter type

./target <command> <filepath>

where commands stands for: tokenize|parse|eval|run and the filepath points to the file with the code

You can always run help command or put the -h --help flag to see details

Examples

Check examples here