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