Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nuriofernandez/golang-experimental-script-interpreter

A joke with a friend to make chicken nuggets a programming language. I love nuggets.
https://github.com/nuriofernandez/golang-experimental-script-interpreter

Last synced: 2 days ago
JSON representation

A joke with a friend to make chicken nuggets a programming language. I love nuggets.

Awesome Lists containing this project

README

        

# GoLang experimental project to interpret a script file

This project has been made just for fun, I made a joke with a friend, and I ended here. ๐Ÿ˜‚

Source file `script.nug`:
```
nugget me ยป 'Nurio';
nugget emoji ยป '๐Ÿ’–';
nugget what ยป 'Code';

nulog('Hi!');
nulog('#{me} #{emoji} #{what}');
```

Output:
```
Hi!
Nurio ๐Ÿ’– Code
```