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