Skip to content

Instantly share code, notes, and snippets.

@kjk
Last active December 17, 2020 08: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 kjk/d041ccbb9acdebf651209c6857bbbecd to your computer and use it in GitHub Desktop.
Save kjk/d041ccbb9acdebf651209c6857bbbecd to your computer and use it in GitHub Desktop.
#include <iostream>
int main()
{
int x = 1;
if (x > 0) {
std::cout << "x (" << x << ") is greater than zero\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment