0001
This commit is contained in:
24
exercises/exercise00.cpp
Normal file
24
exercises/exercise00.cpp
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
* @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
|
||||
}
|
||||
Reference in New Issue
Block a user