diff --git a/examples/typewriter/main.go b/examples/typewriter/main.go
index eb36cbd8b1d4a1a59e58c3b61f3c93a386b7eda4..ded0918a0fb0ea8948b843976fdec15cb8f27c83 100644
--- a/examples/typewriter/main.go
+++ b/examples/typewriter/main.go
@@ -1,7 +1,6 @@
 package main
 
 import (
-	"fmt"
 	"image/color"
 	"math"
 	"math/rand"
@@ -150,7 +149,6 @@ func shake(tw *typewriter, intensity, friction float64) {
 		intensity -= friction * dt
 
 		tw.Offset(off)
-		fmt.Println(off)
 	}
 }