Skip to content
/ plug Public

The interpreter for the Plug programming language

License

Notifications You must be signed in to change notification settings

ifennna/plug

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Plug

Build Status

Plug is a tiny C-like programming language. Plug syntax looks like this:

let five = 5;
let ten = 10;

let add = func(x, y) {
    x + y;
};

let result = add(five, ten);

print(result);

To compile the project, make sure you have Go installed. Clone the project to your $GOPATH and run go build in the project folder.

If you have the binary already run plug your-file.plug or just run plug to start the REPL.

About

The interpreter for the Plug programming language

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published