22 lines
784 B
Markdown
22 lines
784 B
Markdown
---
|
|
title: "Game of Life: Rust WASM Exercise"
|
|
date: 2021-06-26T14:14:40+00:00
|
|
draft: false
|
|
tags:
|
|
- Rust
|
|
- WASM
|
|
categories:
|
|
- Dev
|
|
---
|
|
|
|
![ci](https://github.com/sarsoo/game-of-life/actions/workflows/test.yml/badge.svg)
|
|
|
|
One of my first exposures to Rust WebAssembly was following the Rust + WASM Book's tutorial. The tutorial explains how to shift expensive logic from an interpreted Javascript environment to a faster, compiled Rust + WebAssembly one.
|
|
|
|
![example](gameoflife1.png)
|
|
|
|
This would prove a useful base from which to develop my [checkers implementation](/posts/draught).
|
|
|
|
[![GitHub](https://img.shields.io/badge/github-%23121011.svg?style=for-the-badge&logo=github&logoColor=white)](https://github.com/sarsoo/game-of-life)
|
|
|
|
[Try it out!](https://life.sarsoo.xyz/) |