Skip to content

Instantly share code, notes, and snippets.

View nicolas-sabbatini's full-sized avatar
🧉

Nicolas nicolas-sabbatini

🧉
View GitHub Profile
#!/usr/bin/env bash
set -e
HELP_STRING=$(
cat <<-END
usage: build_wasm.sh PROJECT_NAME [--release]
Build script for combining a Macroquad project with wasm-bindgen,
allowing integration with the greater wasm-ecosystem.
@nicolas-sabbatini
nicolas-sabbatini / 10_PRINT.lua
Created July 15, 2019 01:09
The famous one line program 10 PRINT in lua
::_10:: io.write(math.random() < 0.5 and "/" or "\\"); goto _10