Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 441 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 441 Bytes

toylang

made-with-Go

toylang is a simple, tiny toy interpreted language implemented in Go.

Writing this mostly for fun to learn more about Go and (sort of) implementing programming languages.

Goals

  • implement Lexer
  • implement Parser
  • implement Eval

Build and run

go run main.go

References

Thorsten Ball - Writing an interpreter in Go (2017)