10 lines
208 B
PHP
10 lines
208 B
PHP
<?PHP
|
|
declare(strict_types = 1);
|
|
$object_form_set = array (
|
|
'cube' => 'ಘನ',
|
|
'cuboid' => 'ಘನ',
|
|
'sphere' => 'ಗೋಳ',
|
|
'cone' => 'ಕೋನ್',
|
|
'cylinder' => 'ಸಿಲಿಂಡರ್',
|
|
);
|