LEFT | RIGHT |
(Both sides are equal) |
1 // Copyright 2009 The Go Authors. All rights reserved. | 1 // Copyright 2009 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 /* | 5 /* |
6 Package runtime contains operations that interact with Go's runtime system, | 6 Package runtime contains operations that interact with Go's runtime system, |
7 such as functions to control goroutines. It also includes the low-level type inf
ormation | 7 such as functions to control goroutines. It also includes the low-level type inf
ormation |
8 used by the reflect package; see reflect's documentation for the programmable | 8 used by the reflect package; see reflect's documentation for the programmable |
9 interface to the run-time type system. | 9 interface to the run-time type system. |
10 | 10 |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 return theVersion | 144 return theVersion |
145 } | 145 } |
146 | 146 |
147 // GOOS is the running program's operating system target: | 147 // GOOS is the running program's operating system target: |
148 // one of darwin, freebsd, linux, and so on. | 148 // one of darwin, freebsd, linux, and so on. |
149 const GOOS string = theGoos | 149 const GOOS string = theGoos |
150 | 150 |
151 // GOARCH is the running program's architecture target: | 151 // GOARCH is the running program's architecture target: |
152 // 386, amd64, or arm. | 152 // 386, amd64, or arm. |
153 const GOARCH string = theGoarch | 153 const GOARCH string = theGoarch |
LEFT | RIGHT |