Mark As Completed Discussion

Build your intuition. Fill in the missing part by typing it in.

In many software languages like Python, you're used to writing a script and directly running the program. In contrast, with C++, we'll be ____ our script into runnable code.

A simple 'Hello World' program in C++ looks like this:

TEXT/X-C++SRC
1#include <iostream>
2
3int main() {
4 std::cout << "Hello, World!";
5 return 0;
6}

Write the missing line below.