24 lines
512 B
C++
24 lines
512 B
C++
/**
|
|
* @file exercise00.cpp
|
|
* @author Wicked Jack ()
|
|
* @brief
|
|
* @version 0.1
|
|
* @date 2022-07-26
|
|
*
|
|
*/
|
|
|
|
//This is a one line comment
|
|
/**
|
|
* This
|
|
* is
|
|
* a
|
|
* multiline
|
|
* comment.
|
|
*/
|
|
#include <iostream> //Include library which contains cout to print string to console.
|
|
using namespace std; //Allows to shorten some writing, instead of writing std::cout we can write cout.
|
|
int main() //main-function, returns int-value
|
|
{
|
|
cout << "Hello World\n"; //Print string to console
|
|
return 0; //Return code
|
|
} |