6 lines
126 B
Go
6 lines
126 B
Go
|
|
package main
|
||
|
|
import "fmt"
|
||
|
|
import "code.squareroundforest.org/arpio/wand"
|
||
|
|
func main() {
|
||
|
|
wand.Exec(func(a any) { println(a) })
|
||
|
|
}
|