-
-
Save khoa-io/f31f95be8dee5af8d7456f8b82e1714c to your computer and use it in GitHub Desktop.
Compile hello_multithreading_world.cc
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
$ c++ -Wall -Wextra -Werror hello_multithreading_world.cc -o hello_multithreading_world | |
$ ./hello_multithreading_world | |
Hello Multithreading World |
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
$ clang++ -Wall -Wextra -Werror hello_multithreading_world.cc -o hello_multithreading_world | |
$ ./hello_multithreading_world | |
Hello Multithreading World |
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
$ g++ -Wall -Wextra -Werror hello_multithreading_world.cc -o hello_multithreading_world | |
$ ./hello_multithreading_world | |
Hello Multithreading World |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment