Skip to content

Instantly share code, notes, and snippets.

@toshi0383
Created October 24, 2016 01:30
Show Gist options
  • Save toshi0383/020644b62934560594c257f093b97bb4 to your computer and use it in GitHub Desktop.
Save toshi0383/020644b62934560594c257f093b97bb4 to your computer and use it in GitHub Desktop.
これなんでdoneにならないんだろう。 #CodePiece
import Foundation
var done = false
DispatchQueue.main.async {
print("hello")
done = true
}
while !done {
print("waiting... done:\(done)")
sleep(1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment