main.go 235B

12345678910111213
  1. package main
  2. import (
  3. "fmt"
  4. )
  5. // Ensures gofmt doesn't remove the "fmt" import in stage 1 (feel free to remove this!)
  6. var _ = fmt.Print
  7. func main() {
  8. // TODO: Uncomment the code below to pass the first stage
  9. // fmt.Print("$ ")
  10. }