Spent way too much time building a playground for.. reasons

This commit is contained in:
Leon Mika 2024-04-25 11:10:13 +10:00
parent 4b09a8d494
commit fdc480262d
5 changed files with 729 additions and 0 deletions

11
cmd/playwasm/main.go Normal file
View file

@ -0,0 +1,11 @@
package main
import (
"context"
)
func main() {
initJS(context.Background())
<-make(chan struct{})
}