/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ #include #include main() { #if 0 map > a; map > b; #else map a; a["A"] = 1; a["B"] = 2; a["PI"] = 3.14; cout << "A=" << a["A"] << endl; cout << "B=" << a["B"] << endl; cout << "PI=" << a["PI"] << endl; #endif }