Browse Source

about whitespaces and comma

221V 3 months ago
parent
commit
3a0d44b2ac
1 changed files with 3 additions and 1 deletions
  1. 3 1
      docs/readme.md

+ 3 - 1
docs/readme.md

@@ -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