User talk:Kunda1: Difference between revisions

From FreeCAD Documentation
m (testing syntaxhighlight)
Line 4: Line 4:
* Better integration for FreeCAD and [http://www.opensourceecology.com/wiki/FreeCAD OpenSourceEcology]
* Better integration for FreeCAD and [http://www.opensourceecology.com/wiki/FreeCAD OpenSourceEcology]
* Buildbot framework for testing and generating binaries (especially for compiling experimental branches) [https://freecadweb.org/tracker/view.php?id=3259 #3259]
* Buildbot framework for testing and generating binaries (especially for compiling experimental branches) [https://freecadweb.org/tracker/view.php?id=3259 #3259]

== Wiki Markup Cheatsheet ==

<syntaxhighlight lang="Python" highlight="1,5-7" start='3' line>
def quickSort(arr):
less = []
pivotList = []
more = []
if len(arr) <= 1:
return arr
</syntaxhighlight>

Revision as of 13:24, 2 June 2019

Ideas for projects

Wiki Markup Cheatsheet

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