Commit 0f99bec4 authored by Robert Griesemer's avatar Robert Griesemer

- added calc cmd

SVN=125025
parent 75937c2a
......@@ -7,9 +7,10 @@
package main
type Box struct {};
var m map[string] *Box;
var m *map[string] *Box;
func main() {
m := new(map[string] *Box);
s := "foo";
var x *Box = nil;
m[s] = x;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment