Created
June 26, 2016 21:20
-
-
Save olafurw/cc95d5cbeb7d68d8de7c6852979239e1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
int main() | |
{ | |
int height = 4; | |
int width = 5; | |
std::cout << height << " " << width << std::endl; | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment