mirror of
https://github.com/duhanbalci/dexpr.git
synced 2026-08-30 16:01:41 +00:00
0.4.0
This commit is contained in:
+2
-1
@@ -72,6 +72,7 @@ En düşükten en yükseğe:
|
||||
| Sayı | `42`, `3.14` | `Expr::Value(Number)` |
|
||||
| String | `"hello"`, `'world'` | `Expr::Value(String)` |
|
||||
| Boolean | `true`, `false` | `Expr::Value(Boolean)` |
|
||||
| Null | `null` | `Expr::Value(Null)` |
|
||||
| Parantezli ifade | `(a + b)` | İç ifade |
|
||||
| Tekli negatif | `-x` | `Expr::UnaryOp(Neg, x)` |
|
||||
| Tekli NOT | `!flag` | `Expr::UnaryOp(Not, flag)` |
|
||||
@@ -84,7 +85,7 @@ En düşükten en yükseğe:
|
||||
|
||||
### Ayrılmış Kelimeler
|
||||
|
||||
`if`, `then`, `else`, `end`, `true`, `false`, `in`
|
||||
`if`, `then`, `else`, `end`, `true`, `false`, `null`, `in`
|
||||
|
||||
### Boşluk ve Yorumlar
|
||||
|
||||
|
||||
Reference in New Issue
Block a user