Created
August 4, 2014 09:29
-
-
Save kb10uy/d287cf99fcea3e5c16e2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //yellow,brownが定義してあるとして | |
| //yが左手、bが右手を上げる動作をさせたい | |
| //raise***はブロッキング、ただし同時にあげる | |
| while(true) { | |
| if (yellow) { | |
| raiseLeftHand(); | |
| } else { | |
| raiseRightHand(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment