September 2017 Update

This commit is contained in:
Ingy döt Net 2017-09-23 10:01:46 +02:00
parent bba7bfd280
commit ba8067c3b7
14570 changed files with 153136 additions and 63871 deletions

View file

@ -0,0 +1,18 @@
"foo" == "foo" //True
"foo" == "FOO" //False
"foo" == "foobar" //False
Op("==")("foo","foo") //True
Op("==","foo")("foo") //True
"abc"<"cde" //True
"abc">"cde" //False
"foo" == "FOO" //False
"abc".toUpper()=="ABC" //True
123=="123" //False
123=="123".toInt() //True
123<"123" //False, int on left forces "123".toInt()
123<"1234" //True
2345<"1234" //False