1
0
mirror of https://github.com/golang/go synced 2024-11-21 20:34:40 -07:00
go/doc
Russ Cox 60ce95d7a1 code changes for array conversion.
as a reminder, the old conversion
was that you could write

	var arr [10]byte;
	var slice []byte;
	slice = arr;

but now you have to write

	slice = &arr;

the change eliminates an implicit &, so that
the only implicit &s left are in the . operator
and in string(arr).

also, removed utf8.EncodeRuneToString
in favor of string(rune).

R=r
DELTA=83  (1 added, 23 deleted, 59 changed)
OCL=27531
CL=27534
2009-04-15 20:27:45 -07:00
..
progs code changes for array conversion. 2009-04-15 20:27:45 -07:00
candl.txt Add description of how compiling and linking handle dependencies. 2008-04-15 16:43:06 -07:00
go_mem.html change file name so it can be copied without name change to a more public place. 2009-03-22 21:53:40 -07:00
go_spec.html add a section about order of evaluation 2009-04-14 20:10:49 -07:00
go_tutorial.txt remove print() from the tutorial, generating a little clumsiness around "import" 2009-03-18 14:09:16 -07:00
logo_blue.png add logo to documentation directory. 2009-02-22 15:39:50 -08:00
prog.sh update tutorial to new language. 2009-01-09 15:16:31 -08:00