main.go 173B

123456789101112
  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. fmt.Print("$ ")
  9. }