Skip to content

Instantly share code, notes, and snippets.

View antoineMoPa's full-sized avatar

Antoine M-P antoineMoPa

  • Sherbrooke, Québec, Canada
View GitHub Profile
@antoineMoPa
antoineMoPa / Makefile
Last active October 22, 2022 16:07 — forked from miguelmota/Makefile
Go (golang) WebAssembly (WASM) hello world example
serve: compile
go run server.go
compile: main.go
GOARCH=wasm GOOS=js go build -o test.wasm main.go