11 lines
120 B
Go
11 lines
120 B
Go
package main
|
|
|
|
import (
|
|
"syscall/js"
|
|
)
|
|
|
|
func main() {
|
|
js.Global().Set("DitherNord", DitherNord())
|
|
<-make(chan bool)
|
|
}
|