Skip to content

Commit

Permalink
feat: main
Browse files Browse the repository at this point in the history
  • Loading branch information
0daryo committed Dec 7, 2019
1 parent 51979c7 commit 5dc65a8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# ody

This is a practice of implementing an interpreter using golang,
following 'WRITING AN INTERPRETER IN GO'.
https://interpreterbook.com/

![](https://github.com/0daryo/ody/workflows/ci/badge.svg)

## usage

1. `go get -u github.com/0daryo/ody`
2. make XX.od file in root dir
3. run `ody exec XX.od`
7 changes: 7 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "github.com/0daryo/ody/cmd"

func main() {
cmd.Execute()
}

0 comments on commit 5dc65a8

Please sign in to comment.