[] %% empty list[1|[2,3]] %% Cons[H|_] = [1,2,3] %% List pattern
[] %% empty list
[1|[2,3]] %% Cons
[H|_] = [1,2,3] %% List pattern
本文档使用 全库网 构建