aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJulien Dessaux2021-12-03 23:28:12 +0100
committerJulien Dessaux2021-12-03 23:28:12 +0100
commit18b11177494c4704acc17586e7527d8e6ed9e941 (patch)
treeded430df6e33a42ddd0353420d7174d6d8c7fc02 /README.md
parentRefactoring : isolate stack manipulation into their own package (diff)
downloadgofunge98-18b11177494c4704acc17586e7527d8e6ed9e941.tar.gz
gofunge98-18b11177494c4704acc17586e7527d8e6ed9e941.tar.bz2
gofunge98-18b11177494c4704acc17586e7527d8e6ed9e941.zip
Renamed headless_interpreter to gofunge98
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index b366ad1..ddf0dbc 100644
--- a/README.md
+++ b/README.md
@@ -22,14 +22,14 @@ go is required. Only go version >= 1.17 on linux amd64 (Gentoo) is being regular
## Quick Install
```
-go install git.adyxax.org/adyxax/gofunge98/cmd/headless_interpreter@latest
+go install git.adyxax.org/adyxax/gofunge98/cmd/gofunge98@latest
```
## Usage
-Launching the headless_interpreter is as simple as :
+Launching the gofunge98 is as simple as :
```
-headless_interpreter -f something.b98
+gofunge98 -f something.b98
```
The interpreter will then load and execute the specified Funge-98 program until the program normally terminates or is interrupted or killed.
@@ -43,10 +43,10 @@ go test -cover ./...
For a debug build, use :
```
-go build ./cmd/headless_interpreter/
+go build ./cmd/gofunge98/
```
For a release build, use :
```
-go build -ldflags '-s -w -extldflags "-static"' ./cmd/headless_interpreter/
+go build -ldflags '-s -w -extldflags "-static"' ./cmd/gofunge98/
```