====== Using our Template ====== You can use this template for the beginning :)\\ {{keywords>wiki library source code example reference}} ====== command text ====== source code snippit, replace c with cpp, objc, java and so on ===== Language Example ===== source code snippit ==== output example ==== output text {{keywords>wiki library source code example reference}} ====== define ====== Constants and Macros #include /* including standard library */ //#include /* uncomment this for Windows */ #define identifier replacement_name #define identifier(identifier_list) replacement_name ===== C Example ===== #include /* including standard library */ //#include /* uncomment this for Windows */ #define ANSWER 42 int main(void){ printf("the answer to life the universe and everything is %d \n", ANSWER ); } ==== output example ==== the answer to life the universe and everything is 42 \\ this will create a page like the following\\ \\ {{keywords>wiki library source code example reference}} ====== define ====== Constants and Macros #include /* including standard library */ //#include /* uncomment this for Windows */ #define identifier replacement_name #define identifier(identifier_list) replacement_name ===== C Example ===== #include /* including standard library */ //#include /* uncomment this for Windows */ #define ANSWER 42 int main(void){ printf("the answer to life the universe and everything is %d \n", ANSWER ); } ==== output example ==== the answer to life the universe and everything is 42