mirror of
https://github.com/helix-editor/helix
synced 2026-07-27 11:10:52 +02:00
20 lines
259 B
PHP
20 lines
259 B
PHP
<?php
|
|
|
|
function classify($value)
|
|
{
|
|
switch ($value) {
|
|
case 1:
|
|
return "one";
|
|
case 2:
|
|
echo "two";
|
|
return "";
|
|
default:
|
|
return "other";
|
|
}
|
|
}
|
|
|
|
$doc = <<<EOT
|
|
unindented
|
|
indented
|
|
EOT;
|