SamplePage: Difference between revisions

From FPArma Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 14: Line 14:


== Hotlinking Images ==
== Hotlinking Images ==
<img src="http://i.imgur.com/ZSCE7t7.png">

Revision as of 17:59, 12 July 2017

Example of Syntax Highlighting

def quickSort(arr):
	less = []
	pivotList = []
	more = []
	if len(arr) <= 1:
		return arr
	else:
		pass

Hotlinking Images