summaryrefslogtreecommitdiff
path: root/misc/cgo/life/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/life/main.go')
-rw-r--r--misc/cgo/life/main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/misc/cgo/life/main.go b/misc/cgo/life/main.go
index 9cfed434b..47ae0e18c 100644
--- a/misc/cgo/life/main.go
+++ b/misc/cgo/life/main.go
@@ -2,14 +2,16 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
+// +build ignore
+
// Run the game of life in C using Go for parallelization.
package main
import (
+ "."
"flag"
"fmt"
- "life"
)
const MAXDIM = 100