1
0
mirror of https://github.com/helix-editor/helix synced 2026-07-28 11:30:52 +02:00
Files

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;