Skip to content

Instantly share code, notes, and snippets.

@karan-ta
Last active September 20, 2020 04:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karan-ta/94ec2c7a9091ccc932b250ee2345c66c to your computer and use it in GitHub Desktop.
Save karan-ta/94ec2c7a9091ccc932b250ee2345c66c to your computer and use it in GitHub Desktop.
void main(){
var x = 1;
while (x < 101)
{
print (x);
x = x + 1;
}
}
1,2,fizz,4,5,fizz,7,8,fizz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment