<!-- title The Go Programming Language Specification -->
-<!-- subtitle Version of May 2, 2011 -->
+<!-- subtitle Version of May 4, 2011 -->
<!--
TODO
The following terms are used to denote specific Unicode character classes:
</p>
<pre class="ebnf">
-unicode_char = /* an arbitrary Unicode code point */ .
+newline = /* the Unicode code point U+000A */ .
+unicode_char = /* an arbitrary Unicode code point except newline */ .
unicode_letter = /* a Unicode code point classified as "Letter" */ .
unicode_digit = /* a Unicode code point classified as "Decimal Digit" */ .
</pre>
<pre class="ebnf">
string_lit = raw_string_lit | interpreted_string_lit .
-raw_string_lit = "`" { unicode_char } "`" .
+raw_string_lit = "`" { unicode_char | newline } "`" .
interpreted_string_lit = `"` { unicode_value | byte_value } `"` .
</pre>