Skip to content

Commit 73af2b2

Browse files
committed
Update
1 parent b14b01e commit 73af2b2

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

src/_BASE/expressions/in.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# In
2+
3+
```
4+
v in o
5+
v not in o // negated "in"
6+
```

src/_BASE/expressions/is.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Is
2+
3+
```
4+
v is T
5+
v is not T // negated "is"
6+
```

0 commit comments

Comments
 (0)