Go Strings: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 2: Line 2:


* String types in the language specification https://golang.org/ref/spec#String_types
* String types in the language specification https://golang.org/ref/spec#String_types
* String literals in the language specification https://golang.org/ref/spec#String_literals


=Internal=
=Internal=

Revision as of 16:58, 22 March 2016

External

Internal

Overview

The predeclared String type identifier is string. String values are (possibly empty) sequences of bytes. String values are immutable.

String Literals

String Operators and Functions