SeedV / SeedLang

An embeddable and visualizable scripting engine for .Net and Unity.
https://seedv.github.io/SeedLang/
Apache License 2.0
9 stars 1 forks source link

Implement in keyword #149

Closed codingpotato closed 2 years ago

codingpotato commented 2 years ago

Support following code:

print('python' in str)
print('super' in str)

print(8 in list)
print(None in list)

print('Age' in dict)
print('School' in dict)