Backup test: различия между версиями
Материал из test
Mih (обсуждение | вклад) Метка: отменено |
Mih (обсуждение | вклад) Нет описания правки |
||
| (не показано 9 промежуточных версий этого же участника) | |||
| Строка 6: | Строка 6: | ||
info | info | ||
An extract of source <syntaxhighlight lang="php" inline><?php echo "Done!"; ?></syntaxhighlight> on one line. | |||
<syntaxhighlight lang="php"> | |||
<?php | |||
// some php code | |||
</syntaxhighlight> | |||
| Строка 17: | Строка 24: | ||
else: | else: | ||
pass | pass | ||
</syntaxhighlight> | |||
Текущая версия от 18:01, 15 июня 2026
First
This page is made for backup test
Some other
info
An extract of source <?php echo "Done!"; ?> on one line.
<?php
// some php code
def quick_sort(arr):
less = []
pivot_list = []
more = []
if len(arr) <= 1:
return arr
else:
pass