2008-08-01 17:23:16 -06:00
|
|
|
// $G $D/$F.go && $L $F.$A && ./$A.out
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
2009-01-20 15:40:40 -07:00
|
|
|
type Service struct {
|
2008-08-01 17:23:16 -06:00
|
|
|
rpc [2]int;
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Service) Serve(a int64) {
|
2008-08-11 23:07:49 -06:00
|
|
|
if a != 1234 { panic(a, " not 1234\n") }
|
2008-08-01 17:23:16 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
var arith Service
|
|
|
|
|
|
|
|
func main() {
|
2009-01-06 16:19:02 -07:00
|
|
|
c := make(chan string);
|
|
|
|
a := new(Service);
|
2008-08-01 17:23:16 -06:00
|
|
|
go a.Serve(1234);
|
2009-09-14 22:03:53 -06:00
|
|
|
_ = c;
|
2008-08-01 17:23:16 -06:00
|
|
|
}
|