Learn-You-Some-Erlang-zh_CN
Learn-You-Some-Erlang-zh_CN copied to clipboard
Chinese translation of http://learnyousomeerlang.com/
Results
1
Learn-You-Some-Erlang-zh_CN issues
Sort by
recently updated
recently updated
newest added
@gpfei 这里讨论比较方便留下记录。 比如一段代码: ``` 1> [1, 2, 3, {numbers,[4,5,6]}, 5.34, atom]. [1,2,3,{numbers,[4,5,6]},5.34,atom] ``` 我看到你是通过缩进来表达: ``` 1> [1, 2, 3, {numbers,[4,5,6]}, 5.34, atom]. [1,2,3,{numbers,[4,5,6]},5.34,atom] ``` 而我是用了trac的风格。 ``` {{{ 1> [1, 2,...