diff --git a/README.md b/README.md index 9f467cf..bec4769 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,13 @@ Mers is simple. There are only few expressions: - Values (`1`, `"my string"`, ...) - Blocks (`{}`) -- Tuples (`()`) +- Tuples (`()`) and Objects (`{}`) - Assignments (`=`) - Variable initializations (`:=`) - Variables (`my_var`, `&my_var`) - If statements (`if [else ]`) - Functions (`arg -> `) -- Function calls `arg.function` +- Function calls `arg.function` or `arg1.function(arg2, arg3)` (= `(arg1, arg2, arg3).function`) Everything else is implemented as a function.