] > Comments

1.3 Comments

 /*  A program that writes
     Hello, world!       */
 
 #include <iostream>         // imported library
 using namespace std;
 
 int main()
 {
   cout << "Hello, world!\n";  // output command
   return 0;
 }
-_-_-