Skip to content

Instantly share code, notes, and snippets.

@feldspath
Created August 1, 2021 15:38
Show Gist options
  • Save feldspath/bdeb28620844fbc2b6c95ab15de8cc17 to your computer and use it in GitHub Desktop.
Save feldspath/bdeb28620844fbc2b6c95ab15de8cc17 to your computer and use it in GitHub Desktop.
#include <iostream>
void print_example() {
int a = 3;
std::cout << "a value: " << a << '\n';
}
int main() {
print_example();
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment