Testing page: Difference between revisions

From MTU LUG Wiki
Jump to navigation Jump to search
imported>Sjwhitak
(Testing syntax highlighting.)
imported>Sjwhitak
No edit summary
Line 13: Line 13:


‎</syntaxhighlight>
‎</syntaxhighlight>
{{Warning|This is a warning that is using the warning template specified by Gentoo!}}
{{Important|This is an important message!}}
{{Note|This is a notice, something to keep mind of.}}

Revision as of 13:36, 7 April 2022

Edit anything you want on here to goof around or test things.

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


Warning
This is a warning that is using the warning template specified by Gentoo!
Important
This is an important message!
Note
This is a notice, something to keep mind of.