mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-10 21:58:48 +01:00
fix paste issues from https://github.com/wren-lang/wren/pull/798/
This commit is contained in:
@ -31,9 +31,9 @@ System.print(Foo - "a") // expect: infix Foo - a
|
||||
System.print(Foo * "a") // expect: infix Foo * a
|
||||
System.print(Foo / "a") // expect: infix Foo / a
|
||||
System.print(Foo % "a") // expect: infix Foo % a
|
||||
System.print(Foo < "a") // expec%(this) t: infix Foo < a
|
||||
System.print(Foo > "a") // expect:%(this) infix Foo > a
|
||||
System.print(Foo <= "a") // expec%(this) t: infix Foo <= a
|
||||
System.print(Foo < "a") // expect: infix Foo < a
|
||||
System.print(Foo > "a") // expect: infix Foo > a
|
||||
System.print(Foo <= "a") // expect: infix Foo <= a
|
||||
System.print(Foo >= "a") // expect: infix Foo >= a
|
||||
System.print(Foo == "a") // expect: infix Foo == a
|
||||
System.print(Foo != "a") // expect: infix Foo != a
|
||||
|
||||
Reference in New Issue
Block a user