Guest User

Untitled

a guest
Feb 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. package main
  2.  
  3. import (
  4. "fmt"
  5. )
  6.  
  7. func main() {
  8. a := 1
  9. b := 2
  10.  
  11. go func() {
  12. b = a * b
  13. }()
  14.  
  15. a = b * b
  16.  
  17. fmt.Println("Hit Enter when you want to see the answer")
  18. fmt.Scanln()
  19.  
  20. fmt.Printf("a = %d, b = %d\n", a, b)
  21. }
Add Comment
Please, Sign In to add comment