Guest User

Untitled

a guest
Dec 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. // Are you ready? :D
  6. func readyToGo() bool {
  7. return true
  8. }
  9.  
  10. func main() {
  11. fmt.Println("Ready?", readyToGo())
  12. }
Add Comment
Please, Sign In to add comment