Skip to content

Instantly share code, notes, and snippets.

@Qix-
Created May 6, 2017 18:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Qix-/f22da1cf9233b32637b6f579a17b30a0 to your computer and use it in GitHub Desktop.
Save Qix-/f22da1cf9233b32637b6f579a17b30a0 to your computer and use it in GitHub Desktop.
// clang++ -std=c++11 lol.cc -o lol
#include <iostream>
using namespace std;
int main() {
int lol = 10;
int l​ol = 10;
int l​o​l = 10;
int l​​ol = lol + l​ol + l​o​l;
cout << l​​ol << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment