Skip to content

Instantly share code, notes, and snippets.

@marklocklear
Created March 17, 2022 12:11
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 marklocklear/b82d9fee04da03b2479bda6cb3c8e3bc to your computer and use it in GitHub Desktop.
Save marklocklear/b82d9fee04da03b2479bda6cb3c8e3bc to your computer and use it in GitHub Desktop.
//J. Mark Locklear
//1March22
#include <iostream>
using namespace std;
int main() {
//cout statement
std::cout << "Hello Mark!\n";
//define string variable
string name = "TNCA";
//define integer variable
int my_int = 14;
cout << name;
cout << my_int;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment