12 lines
206 B
Go
12 lines
206 B
Go
package whereareyou
|
|
|
|
import (
|
|
"bbash/environment"
|
|
"bbash/input_parser"
|
|
"fmt"
|
|
)
|
|
|
|
func Whereareyou(in input_parser.Input, env *environment.Env) {
|
|
fmt.Print("You're in the thick of it everybody knows!")
|
|
}
|