* adjusted the start of the tutorial to work with the "overview" filter. * fixes some spelling errors in the tutorial. * tabs can be encoded by "\\t" in the project description.
29 lines
627 B
C++
29 lines
627 B
C++
#ifndef MAIN_H
|
|
#define MAIN_H
|
|
|
|
|
|
#include "my_first_step.h"
|
|
|
|
//------------------------------------------------------------------------------
|
|
//
|
|
// WHAT IS THIS?
|
|
// Now the Code View finally shows some real code of the tutorial project.
|
|
// And who could think of a better place to start a tutorial that involves
|
|
// code than a main function?
|
|
//
|
|
// WHAT CAN I DO NOW?
|
|
// Left-click the "my_first_step()" function call inside the main function.
|
|
// Lets see what happens.
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
|
|
int main()
|
|
{
|
|
my_first_step();
|
|
return 0;
|
|
}
|
|
|
|
|
|
#endif // MAIN_H
|
|
|