Skip to content

Commit

Permalink
fixed println in quaternion example
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Nov 6, 2013
1 parent 5799009 commit 1288510
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/quaternion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -81,5 +81,4 @@ x = Quaternion(0,1,1,1)

println("q = $q")
println("q*2.0+2 = $(q*2.0+2)")
println("abs((-q+x*2)/4) = $repr(abs((-q+x*2)/4))")

println("abs((-q+x*2)/4) = ", abs((-q+x*2)/4))

0 comments on commit 1288510

Please sign in to comment.