Functions

For creating complex programs, such as complicated HTTP programs, one can use functions. Simply put:

#define functions

On the first line of your program. This allows you to program functions in a C-style manner:


int main(){
a(5);
}

void a(int b){
b=b*b;
}