Files
RobinNixon 53063593e3 Final
Final
2020-12-10 13:51:13 +00:00

17 lines
231 B
PHP

<?php
Translate::lookup();
class Translate
{
const ENGLISH = 0;
const SPANISH = 1;
const FRENCH = 2;
const GERMAN = 3;
// ...
static function lookup()
{
echo self::SPANISH;
}
}
?>