Created
October 19, 2023 14:58
-
-
Save Hackathonwave/b61e4e70e1522e49bf5379775f153a96 to your computer and use it in GitHub Desktop.
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
void main() { | |
var temperature = 68; | |
//if( temperature > 65) { | |
//print("It's hot outside!"); | |
//} | |
//else { | |
//print("It's warm outside!"); | |
//} | |
print(temperature > 65? "It's hot outside!": "It's warm outside!"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment