mirror of
https://github.com/golang/go
synced 2024-11-23 00:10:07 -07:00
4b0b7d8dfe
- almost back to where I was in C++, but now all in Go R=r OCL=13627 CL=13627
15 lines
274 B
Go
Executable File
15 lines
274 B
Go
Executable File
// 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.
|
|
|
|
// Base for the decls.go tests.
|
|
|
|
package base
|
|
|
|
type Node struct {
|
|
left, right *Node;
|
|
val bool
|
|
}
|
|
|
|
export Node
|