diff options
author | Patrick Simianer <p@simianer.de> | 2015-03-04 17:25:51 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2015-03-04 17:25:51 +0100 |
commit | 3af4d5a70e6b3d5eaa88c786ca902c60652a8ac4 (patch) | |
tree | e3d4d061ae4328de906045f5b30ae878c677bd38 | |
parent | dd5d680ef1b3442df4e1aaf6bd8ce9bc30cd1640 (diff) |
Ouch!
-rw-r--r-- | templates/cplusplus.cc | 2 | ||||
-rw-r--r-- | templates/plainc.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/cplusplus.cc b/templates/cplusplus.cc index 346f268..bddbfd2 100644 --- a/templates/cplusplus.cc +++ b/templates/cplusplus.cc @@ -12,7 +12,7 @@ using namespace std; int main(int argc, char const* argv[]) { - cout << 'Hello, World!' << endl; + cout << "Hello, World!" << endl; return 0; } diff --git a/templates/plainc.c b/templates/plainc.c index 26c7a80..16bb550 100644 --- a/templates/plainc.c +++ b/templates/plainc.c @@ -10,7 +10,7 @@ int main(int argc, char** argv) { - printf('Hello, World!\n'); + printf("Hello, World!\n"); return 0; } |