Skip to content

Instantly share code, notes, and snippets.

@kjk
Created November 7, 2019 07:35
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 kjk/c9180850c175861c14291f47c529282f to your computer and use it in GitHub Desktop.
Save kjk/c9180850c175861c14291f47c529282f to your computer and use it in GitHub Desktop.
// :glot
#include <iostream>
using namespace std;
auto main() -> int
{
int i =0;
do
{
std::cout << i;
++i;
} while (i < 0);
std::cout << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment