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