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