Difference between revisions of "User:DBrettle"

From Deep Blue Robotics Wiki
Jump to: navigation, search
(Replaced content with " '''''Test''''' '''content'''.")
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
  
 
'''''Test''''' '''content'''.
 
'''''Test''''' '''content'''.
 +
 +
<syntaxhighlight lang=c>
 +
int main()
 +
{
 +
printf ("Hello world!");
 +
return 0;
 +
}
 +
</syntaxhighlight>

Latest revision as of 06:10, 6 October 2016

Test content.

int main()
{
	printf ("Hello world!");
	return 0;
}