Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```