Created
May 23, 2013 14:39
-
-
Save SimonRichardson/5636551 to your computer and use it in GitHub Desktop.
Open up the do keyword so it's more fluent. this will not compile - feature request!
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
| // I think this should be valid syntax | |
| do remove() if (once()); | |
| // which is similar to | |
| do remove() while(once()); | |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This would be only good if the if was read before the do :)