/* Test the dictionary builtin type */

proc main()
{
    var a;

    a = new Dict(32);
    a["hello"] = 3;
    a["world"] = "four";
    a[main] = 5.5;
    "hello = ", a["hello"], " world = ", a["world"], " main = ", a[main], "\n";
}