Skip to content

Instantly share code, notes, and snippets.

@kjk
Created November 7, 2019 07:27
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/bb20e0dd52eb37a6795b4e6141ac861b to your computer and use it in GitHub Desktop.
Save kjk/bb20e0dd52eb37a6795b4e6141ac861b 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