https://rentry.org/PPP2_p48b ⎗ ✓ 1 2 3 4 5 6 7 8 9 10 11 12 13// Code derived from Stroustrup's PPP2 book // § 2.3 Compilation // -beginning on p 48 #include <iostream> using std::cout; int main() { cout << "Hello, World!\n"; return 0; } build & run: g++ -std=c++20 -O2 -Wall -pedantic ./ch_02/main_p48b.cpp && ./a.out sauce: Bjarne Stroustrup's PPP2 textbook /robowaifu/'s official C++ learning textbook thread Prev • Up