summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorPaul Buetow (europa) <paul@buetow.org>2015-05-25 00:15:30 +0100
committerPaul Buetow (europa) <paul@buetow.org>2015-05-25 00:15:30 +0100
commit9b865d25ac5dde4045e3d3b6c4a333dfb51af7fc (patch)
treeb5404ee373c11f7568787f175ecbf2c3bc36d9bf /main
parentf6473fc7afd385b652e1ccdb745c43292f14a852 (diff)
do some clever stuff
Diffstat (limited to 'main')
-rw-r--r--main/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.go b/main/main.go
index e408e4b..6cef683 100644
--- a/main/main.go
+++ b/main/main.go
@@ -24,7 +24,7 @@ func gather(timer <-chan bool, processes chan<- process.Process) {
func receive(processes <-chan process.Process) {
for process := range processes {
- fmt.Println(process)
+ process.Print()
}
}