Diferencia entre revisiones de «Prueba»

De SIU
Saltar a: navegación, buscar
Línea 2: Línea 2:
 
#: Generally, at the end of the <code>[[Manual:LocalSettings.php|LocalSettings.php]]</code> file (but above the PHP end-of-code delimiter, "<code>?></code>", if present), the following line should be added:
 
#: Generally, at the end of the <code>[[Manual:LocalSettings.php|LocalSettings.php]]</code> file (but above the PHP end-of-code delimiter, "<code>?></code>", if present), the following line should be added:
 
#:<syntaxhighlight lang="php">require_once( "$IP/extensions/extension_name/extension_name.php" );</syntaxhighlight>
 
#:<syntaxhighlight lang="php">require_once( "$IP/extensions/extension_name/extension_name.php" );</syntaxhighlight>
 +
 +
 +
<syntaxhighlight lang="python" highlight="1,5-7">
 +
def quickSort(arr):
 +
    less = []
 +
    pivotList = []
 +
    more = []
 +
    if len(arr) <= 1:
 +
        return arr
 +
    else:
 +
</syntaxhighlight>

Revisión del 16:54 2 sep 2015

  1. Instale su extensión.
    Generally, at the end of the LocalSettings.php file (but above the PHP end-of-code delimiter, "?>", if present), the following line should be added:
    require_once( "$IP/extensions/extension_name/extension_name.php" );


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