blob: 888b495eec3f238df18036b4a9d6c216b3f19ff8 [file] [log] [blame]
Russ Cox2b1c9b42012-02-16 23:49:30 -05001// compile
Rob Pikeacaba182009-06-15 21:13:28 -07002
3// Copyright 2009 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package main
8
Russ Cox5d5904b2009-06-29 17:46:22 -07009// Multi-line string literal now allowed.
10
11const s = `
12Hello, World!
13`
Rob Pikeacaba182009-06-15 21:13:28 -070014
15func main() {
Russ Cox5d5904b2009-06-29 17:46:22 -070016 print(s)
Rob Pikeacaba182009-06-15 21:13:28 -070017}