exercism/go/forth/forth.go
2022-08-24 14:28:45 +02:00

6 lines
107 B
Go

package forth
func Forth(input []string) ([]int, error) {
panic("Please implement the Forth function")
}