Rob Pike | 126150d | 2008-06-06 13:28:03 -0700 | [diff] [blame] | 1 | // $G $F.go && $L $F.$A && ./$A.out |
2 | |||||
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 | |||||
7 | package main | ||||
8 | |||||
Rob Pike | 34cb7c2 | 2008-06-27 14:15:06 -0700 | [diff] [blame] | 9 | func main() { |
Rob Pike | 4f61fc9 | 2010-09-04 10:36:13 +1000 | [diff] [blame] | 10 | print("hello, world\n") |
Rob Pike | 126150d | 2008-06-06 13:28:03 -0700 | [diff] [blame] | 11 | } |