Skip to content

From the Writing an Interpreter in Go - created for learning purposes

Notifications You must be signed in to change notification settings

kevsersrca/monkey

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Monkey

~/go/src/monkey >  go run main.go
>> let five = 5;
{Type:LET Literal:let}
{Type:IDENTIFIER Literal:five}
{Type:= Literal:=}
{Type:INT Literal:5}
{Type:; Literal:;}

>> 1 == 1
{Type:INT Literal:1}
{Type:== Literal:==}
{Type:INT Literal:1}

About

From the Writing an Interpreter in Go - created for learning purposes

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages