Any tricks to hide or suppress return value in the repl?

I’ve got a function that returns a huge map from parsing documents. When working with it in the repl, I read it in and store it as a variable that I can explore. The initial retrieval always dumps everything to the repl, though. Are there are ways to hide the result of a function call there? Thanks!

1 Like

Try doing
iex> call_my_function(); nil

6 Likes

That rocks, exactly what I was looking for! Thanks!!! :slight_smile:

2 Likes