diff --git a/exercises/12/README.md b/exercises/12/README.md index 417c1a0..2ea7177 100644 --- a/exercises/12/README.md +++ b/exercises/12/README.md @@ -1,4 +1,4 @@ [< Back](../README.md) -* [Exercise: Hello std::cout on Godbolt](hello_cout/README.md) +* [Exercise: Hello std::cout on Godbolt.org](hello_cout/README.md) * [Exercise: Hello {fmt} on Godbolt](hello_fmt/README.md) diff --git a/exercises/12/hello_cout/README.md b/exercises/12/hello_cout/README.md index 43c9b09..f77e257 100644 --- a/exercises/12/hello_cout/README.md +++ b/exercises/12/hello_cout/README.md @@ -1,7 +1,12 @@ -# Exercise: Hello std::cout on Godbolt +# Exercise: Hello std::cout on Godbolt.org -## Background: Godbolt +## Background: Compiler Explorer + +Compiler Explorer is a website where you can experiment with many different C++ compilers. You can compile short C++ +programs, run them and inspect their assembly. + +Today, we will use it to compile and run a Hello World program. ## Exercise -1. Play with Hello World on [Godbolt](https://godbolt.org/z/bceh7693T) +1. Play with Hello World on [Compiler Explorer](https://godbolt.org/z/bceh7693T).