Skip to content

Instantly share code, notes, and snippets.

@NinoBass
Created January 24, 2025 11:24
Show Gist options
  • Save NinoBass/acfc4ce5f1f0885d116f664a79d71b29 to your computer and use it in GitHub Desktop.
Save NinoBass/acfc4ce5f1f0885d116f664a79d71b29 to your computer and use it in GitHub Desktop.
Hide and Seek Loop
String playHideAndSeekTheLongVersion() {
var counting = 0;
for (var i = 1; i <= 1000000000; i++) {
counting = i;
}
return '$counting! Ready or not, here I come!';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment