Explorar o código

Make ">" alternative consistent

Alexander Zaytsev %!s(int64=9) %!d(string=hai) anos
pai
achega
856cfd6b11
Modificáronse 1 ficheiros con 4 adicións e 4 borrados
  1. 4 4
      README.md

+ 4 - 4
README.md

@@ -415,15 +415,15 @@ X = Y  // assign a new value
 ### `>` – Boolean + Create Numbers
 
 ```js 
-X < Y  // true
-X < X  // false
-X << Y // number
+X > Y  // true
+X > X  // false
+X >> Y // number
 ```
 
 A more complex example is to get character "f" with `[]>+` only:
 
 ```js
-[[ []<[] ] + [] ] [[]<<[]] [[]<<[]]
+[[ []>[] ] + [] ] [[]>>[]] [[]>>[]]
 [[ false ] + [] ] [     0] [     0]
 [ "false"       ] [     0] [     0]
   "false"                  [     0]