I want to be able to call an anonymous lambda from within itself using Ruby. Consider the following recursive block (returns a factorial). I know I can assign it to a variab
fact = -> (x){ x < 2 ? 1 : x*fact.(x-1)}
minimal function