Source file test/ken/mfunc.go
1 // run 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 // Test simple multi-argument multi-valued function. 8 9 package main 10 11 func 12 main() { 13 var x,y int; 14 15 x,y = simple(10,20,30); 16 if x+y != 65 { panic(x+y); } 17 } 18 19 func 20 simple(ia,ib,ic int) (oa,ob int) { 21 return ia+5, ib+ic; 22 } 23