Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yokra9/grain-fizz-buzz
FizzBuzz with the grain-lang
https://github.com/yokra9/grain-fizz-buzz
grain-lang
Last synced: about 17 hours ago
JSON representation
FizzBuzz with the grain-lang
- Host: GitHub
- URL: https://github.com/yokra9/grain-fizz-buzz
- Owner: yokra9
- License: mit
- Created: 2024-07-14T05:30:34.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-12T06:07:49.000Z (5 months ago)
- Last Synced: 2024-12-14T16:14:10.371Z (about 1 month ago)
- Topics: grain-lang
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# grain-fizz-buzz
```bash
# Compile and Run
grain --no-wasm-tail-call FizzBuzz1.gr# Run
wasmedge FizzBuzz1.gr.wasm
wasmer FizzBuzz1.gr.wasm
wasmtime FizzBuzz1.gr.wasm# Compile and Run with tail-call proposal
grain FizzBuzz1.gr# Run with tail-call proposal
wasmedge --enable-tail-call FizzBuzz1.gr.wasm
wasmtime FizzBuzz1.gr.wasm
```