|
@@ -183,7 +183,9 @@ bool has_end_test(string str){
|
|
|
return false;
|
|
|
}
|
|
|
```
|
|
|
-In My Humble Opinion be better to make this syntax similar (laconic) as in Erlang.
|
|
|
+In My Humble Opinion be better to make this syntax similar (laconic) as in Erlang.
|
|
|
+upd. whitespaces count between function name and first argument do not matter (>=1 e.g. " " = [␣]{1, }),
|
|
|
+between first argiment and second (and next) must be at least comma and 1 whitespase (", " = [␣]{0,}[,]{1}[␣]{1,} ).
|
|
|
|
|
|
|
|
|
### 2.4.2 pattern matching examples
|