Today I Learned

hashrocket A Hashrocket project

Clear existing variable bindings in erlang shell

This can be done with f()

1> A = 1. 
1 
2> A = 2. 
** exception error: no match of right hand side value 2 
3> f(). 
ok 
4> A = 2. 
2 
See More #erlang TILs