Skip to content

Instantly share code, notes, and snippets.

@Hackathonwave
Created October 19, 2023 14:58
Show Gist options
  • Save Hackathonwave/b61e4e70e1522e49bf5379775f153a96 to your computer and use it in GitHub Desktop.
Save Hackathonwave/b61e4e70e1522e49bf5379775f153a96 to your computer and use it in GitHub Desktop.
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