2012-02-16 23:50:37 -05:00
|
|
|
// run
|
2008-06-06 14:27:34 -07:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// 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 simple functions.
|
2008-06-06 14:27:34 -07:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
func
|
2009-12-10 12:53:23 -08:00
|
|
|
main() {
|
2008-06-06 14:27:34 -07:00
|
|
|
var x int;
|
|
|
|
|
|
|
|
x = fun(10,20,30);
|
2008-08-11 22:07:49 -07:00
|
|
|
if x != 60 { panic(x); }
|
2008-06-06 14:27:34 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
func
|
2009-12-10 12:53:23 -08:00
|
|
|
fun(ia,ib,ic int)int {
|
2008-06-06 14:27:34 -07:00
|
|
|
var o int;
|
|
|
|
|
|
|
|
o = ia+ib+ic;
|
2008-08-11 22:07:49 -07:00
|
|
|
if o != 60 { panic(o); }
|
2008-06-06 14:27:34 -07:00
|
|
|
return o;
|
|
|
|
}
|