10 lines
181 B
PHP
10 lines
181 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$object_form_set = array (
|
|
'cube' => 'Krychle',
|
|
'cuboid' => 'Kvádr',
|
|
'sphere' => 'Koule',
|
|
'cone' => 'Kužel',
|
|
'cylinder' => 'Válec',
|
|
);
|