Guest User

Untitled

a guest
Jun 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. package main
  2.  
  3. import "fmt"
  4.  
  5. func main() {
  6. LOOP_TEST:
  7. for j := 1; j < 3; j += 1 {
  8. fmt.Println("loop1")
  9. for i := 1; i < 3; i = i + 1 {
  10. fmt.Println("loop2")
  11. continue LOOP_TEST
  12. fmt.Println("vim-go")
  13. }
  14. }
  15. fmt.Println("after continue")
  16. }
Add Comment
Please, Sign In to add comment