Created
March 4, 2019 07:17
-
-
Save joaoluiznaufel/1e4530fe7528e58c04840c25c0bffb15 to your computer and use it in GitHub Desktop.
built-in control structures
This file contains 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
var hello = "hello" | |
if (!hello.isEmpty) | |
print "is not empty" | |
var myHello = if (!hello.isEmpty) "is not empty" else "is empty" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment