Main Page: Difference between revisions

From ElixirBlocks
Jump to: navigation, search
No edit summary
No edit summary
Line 1: Line 1:
‎<syntaxhighlight lang="python" line>
‎<syntaxhighlight>
def quick_sort(arr):
def test() do
less = []
 
pivot_list = []
  "hello world"
more = []
end
if len(arr) <= 1:
return arr
else:
pass
‎</syntaxhighlight>
‎</syntaxhighlight>

Revision as of 04:23, 8 March 2023

def test() do

  "hello world"
end
‎