1. Loop over the list
Due to immutability, loops in Elixir are written differently from imperative languages. For example, loops commonly...
·
0 赞
·
0 评论
Python Lambda
Syntax
func = lambda x: x * 2
func(2)
callable(func) # => True
Lambda function is regularly used with some hi...
·
0 赞
·
0 评论
Recently, I have read the CS paper that compares Ruby and Java.
http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.127.2138&rep...
·
1 赞
·
1 评论