From bd33476eb0d7cb5ed2b1be018175f1bed9e48a8a Mon Sep 17 00:00:00 2001 From: Rafal Zukowski Date: Wed, 28 Sep 2016 19:18:37 +0200 Subject: [PATCH] fixing tags for version 1.0.1 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d94bbce..42eb827 100644 --- a/README.md +++ b/README.md @@ -59,14 +59,14 @@ We discourage using *anonymous functions*, *code blocks*, *loops*, etc. opel supports: -- primary math and string operations (i.e. `2+2*2`) +- primary math and string operations (i.e. `2+2*2`, `'Hello' + 'world !'`) - relational and equality operators (i.e. `2 == 3`, `2 > 1 != false`) - logic operators (i.e. `true && false`, `false || true`) - simple map element access (i.e. `map.field` or `map['field']`) - simple list element access (i.e. `list[index]`) - object method calls (i.e. `'Hello, World!'.length()`) - if expressions (i.e. `if (2 > 3) 'a' else 'b'`) -- defining local final variables (i.e. `val x = 2+2*2; x * x`) +- defining local constant values (i.e. `val x = 2+2*2; x * x`) - registrable implicit conversions (i.e. `2 + '2'` or `'Hello, World!'.myMethod()`) - registrable functions (i.e. `myFunction('Hello, World!')`) - registrable constant values (i.e. `'Hello, ' + WORLD_VALUE`)