rustyphoenixlecture 1.7.0

This project aims to provide a simple a powerfull lecture compilation to generate html web sites
1
2
3
4
5
6
7
8
9
10
11
12

//{We have to include I/O includes :
#include <iostream>

//{Then, we can define the main function :
int main(int argc, char** argv){
	int value = 4;
//{Some printing :
	std::cout << "Hello world ! " << value << std::endl;
//{The end of the function
	return 0;
}