Created
March 17, 2022 12:11
-
-
Save marklocklear/b82d9fee04da03b2479bda6cb3c8e3bc 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
//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