https://github.com/aisk/goblin
https://github.com/aisk/goblin
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aisk/goblin
- Owner: aisk
- License: mit
- Created: 2023-06-07T15:09:24.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-08-03T15:28:43.000Z (almost 2 years ago)
- Last Synced: 2025-02-09T07:11:36.639Z (over 1 year ago)
- Language: Go
- Size: 99.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# goblin

Toy language built for fun.
## Installation
```sh
$ go install github.com/aisk/goblin/command/goblin@latest
```
## Hello world
```sh
$ cat hello.goblin
print("Hello, world!")
$ goblin hello.goblin > hello.go
$ go build hello.go
$ ./hello
"Hello, world!"
```
## Grammer
Take a look at [goblin.bnf](https://github.com/aisk/goblin/tree/master/goblin.bnf).
## About the Project
Goblin is © 2023-2024 by [aisk](https://github.com/aisk).
### License
Vox is distributed by a [MIT license](https://github.com/aisk/goblin/tree/master/LICENSE).