Difference between revisions of "User:DBrettle"

From Deep Blue Robotics Wiki
Jump to: navigation, search
 
Line 2: Line 2:
 
'''''Test''''' '''content'''.
 
'''''Test''''' '''content'''.
  
<syntaxhighlight lang="python" line>
+
<syntaxhighlight lang=c>
def quickSort(arr):
+
int main()
less = []
+
{
pivotList = []
+
printf ("Hello world!");
more = []
+
return 0;
if len(arr) <= 1:
+
}
return arr
+
else:
+
pass
+
 
</syntaxhighlight>
 
</syntaxhighlight>

Latest revision as of 06:10, 6 October 2016

Test content.

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