Go Language Resources Go, golang, go... NOTE: This page ceased updating in October, 2012

--- Log opened Sun Jan 03 00:00:41 2010
23:34 < drhodes> @eval \123
23:34 < rndbot> <Error: syntax error near Print>
23:35 < drhodes> > fmt.Printf("%+v", \123)
23:35 < rndbot> <Error: syntax error near "<string>">
23:36 < drhodes> > fmt.Printf("%+v", asdf);
23:36 < rndbot> <Error: undefined: asdf>
23:36 < drhodes> > fmt.Printf("%+v", "asdf");
23:36 < rndbot> asdf
23:37 < drhodes> > fmt.Printf("%+v", \u11);
23:37 < rndbot> <Error: syntax error near "<string>">
23:39 < drhodes> > fmt.Printf("%+v", '\u11');
23:39 < rndbot> <Error: non-hex character in escape sequence: '>
23:42 < drhodes> > fmt.Printf("%+v", '\u1111');
23:42 < rndbot> 4369
23:42 < drhodes> :3
--- Log closed Mon Jan 04 00:00:41 2010