View Problem

Define an unmodifiable empty map

ExpandDiskEdit
php
/* It's not possible to define an array as a constant
* Instead we can use the serialize-function */

$fruits = array("apple", "banana", "orange");
define("FRUITS", serialize($fruits));
echo FRUITS; // a:3:{i:0;s:5:"apple";i:1;s:6:"banana";i:2;s:6:"orange";}
$my_fruits = unserialize(FRUITS); // and normal array again

Submit a new solution for php
There are 20 other solutions in additional languages (clojure, cpp, erlang, fantom ...)