Skip to content

Instantly share code, notes, and snippets.

@hjr265
Created March 13, 2016 14:35
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 hjr265/be618964f3881698114e to your computer and use it in GitHub Desktop.
Save hjr265/be618964f3881698114e to your computer and use it in GitHub Desktop.
Arturia C++ Hello
#include <iostream>
#include <string>
using namespace std;
int main() {
string s;
cin >> s;
cout << "Hello, "+s+"!" << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment