Hacker News new | ask | show | jobs
by lmagno 1913 days ago
Interesting, similar to Julia's `@show` macro

  julia> @show sqrt(121)
  > sqrt(121) = 11.0
  > 11.0
The last line being the returned value.