Go Strings: Difference between revisions
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
=String Literals= | =String Literals= | ||
A ''string literal'' is a [[Go Concepts - Lexical Structure#Constants|string constant]]. | |||
==Raw String Literals== | ==Raw String Literals== |
Revision as of 17:35, 22 March 2016
External
- 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
Overview
The predeclared String type identifier is string. String values are (possibly empty) sequences of bytes. String values are immutable.
String Literals
A string literal is a string constant.