> What is the meaning of `<-`? It's an assignment-operator in some other languages (S/R, maybe more I'm not aware of). Those languages don't use the "arrow" like C++ does, but to express that data should be stored: calculate(input) -> output output <- calculate(input) have the same effect.