16 lines
367 B
C++
16 lines
367 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
cout << "Hello, World!" << endl;
|
|
|
|
cout << "I am submitting this code from my Mac Studio." << endl;
|
|
|
|
cout << "Now I'm adding code from my MacBook Pro." << endl;
|
|
|
|
cout << "Let's try adding code to the Gitea repo" << endl;
|
|
|
|
return 0;
|
|
}
|
|
// This program prints "Hello, World!" to the console.
|