2023-01-02 07:58:11 +03:00
|
|
|
# newyearkrendelki
|
|
|
|
|
|
|
|
A game written in Go for the [WASM-4](https://wasm4.org) fantasy console.
|
|
|
|
|
|
|
|
## Building
|
|
|
|
|
2023-10-03 16:49:50 +03:00
|
|
|
*REQUIRES GO 1.19 AND TINYGO 0.26*
|
|
|
|
|
2023-01-02 07:58:11 +03:00
|
|
|
Build the cart by running:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
make
|
|
|
|
```
|
|
|
|
|
|
|
|
Then run it with:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
w4 run build/cart.wasm
|
|
|
|
```
|
|
|
|
|
|
|
|
For more info about setting up WASM-4, see the [quickstart guide](https://wasm4.org/docs/getting-started/setup?code-lang=go#quickstart).
|
|
|
|
|
|
|
|
## Links
|
|
|
|
|
|
|
|
- [Documentation](https://wasm4.org/docs): Learn more about WASM-4.
|
|
|
|
- [Snake Tutorial](https://wasm4.org/docs/tutorials/snake/goal): Learn how to build a complete game
|
|
|
|
with a step-by-step tutorial.
|
|
|
|
- [GitHub](https://github.com/aduros/wasm4): Submit an issue or PR. Contributions are welcome!
|