blob: 6c65d9c6f8fde8ac7b2e57ecfb217aa891f0cc92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package main
import (
"bufio"
"fmt"
"os"
)
func main() {
// You can use print statements as follows for debugging, they'll be visible when running tests.
fmt.Println("Logs from your program will appear here!")
// Uncomment this block to pass the first stage
// fmt.Fprint(os.Stdout, "$ ")
// Wait for user input
bufio.NewReader(os.Stdin).ReadString('\n')
}
|