2018-05-31 18:51:00 +03:00
|
|
|
// run
|
2010-03-02 18:32:11 -08:00
|
|
|
|
2010-03-09 12:49:24 -08:00
|
|
|
// Copyright 2010 The Go Authors. All rights reserved.
|
2010-03-02 18:32:11 -08:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
2012-02-24 16:24:24 +11:00
|
|
|
// Test trivial, bootstrap-level complex numbers, including printing.
|
|
|
|
|
|
2010-03-02 18:32:11 -08:00
|
|
|
package main
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
R = 5
|
|
|
|
|
I = 6i
|
|
|
|
|
|
|
|
|
|
C1 = R + I // ADD(5,6)
|
|
|
|
|
)
|
|
|
|
|
|
2011-01-19 23:09:00 -05:00
|
|
|
func doprint(c complex128) { println(c) }
|
2010-03-02 18:32:11 -08:00
|
|
|
|
|
|
|
|
func main() {
|
|
|
|
|
|
|
|
|
|
// constants
|
|
|
|
|
println(C1)
|
|
|
|
|
doprint(C1)
|
|
|
|
|
|
|
|
|
|
// variables
|
|
|
|
|
c1 := C1
|
|
|
|
|
println(c1)
|
|
|
|
|
doprint(c1)
|
|
|
|
|
}
|