User talk:Kunda1: Difference between revisions

From FreeCAD Documentation
(One intermediate revision by the same user not shown)
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 ==
* Test 1
<syntaxhighlight lang="Python" highlight="1,5-7" start='3' line>
def quickSort(arr):
less = []
pivotList = []
more = []
if len(arr) <= 1:
return arr
</syntaxhighlight>
* Test 2
<syntaxhighlight lang="Python">
def quickSort(arr):
less = []
pivotList = []
more = []
if len(arr) <= 1:
return arr
</syntaxhighlight>

Revision as of 00:43, 3 June 2019

Ideas for projects

Wiki Markup Cheatsheet

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