diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-08 03:32:39 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-08 03:32:39 +0300 |
commit | 7b46d443b0418b4b7a4b66e046a3dc28585821d0 (patch) | |
tree | c6d537634c9ce83274df83fd4bb7b99455ed7c17 /cmake/examples/simple/foo.cpp | |
parent | AppVeyor: prettify appveyor.yml (diff) | |
download | cmake-common-7b46d443b0418b4b7a4b66e046a3dc28585821d0.tar.gz cmake-common-7b46d443b0418b4b7a4b66e046a3dc28585821d0.zip |
cmake/examples: more distinct output
Diffstat (limited to '')
-rw-r--r-- | cmake/examples/simple/foo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/examples/simple/foo.cpp b/cmake/examples/simple/foo.cpp index 8b6a1d7..b9d3132 100644 --- a/cmake/examples/simple/foo.cpp +++ b/cmake/examples/simple/foo.cpp @@ -1,6 +1,6 @@ #include <iostream> int main() { - std::cout << "Hello, world!\n"; + std::cout << "foo\n"; return 0; } |