Difference between revisions of "Test/testpage"

From fd.io
Jump to: navigation, search
 
Line 14: Line 14:
 
hello_world()
 
hello_world()
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
  
 
<syntaxhighlight>
 
<syntaxhighlight>

Latest revision as of 22:53, 26 January 2016

Testing subpages

1


  1. def hello_world():
  2.     print("hello world!")
  3.  
  4. hello_world()


#include<stdio.h>
 
main()
{
    printf("Hello World");
 
}