False wasn't used in the example so removed

This commit is contained in:
mollusk 2016-07-19 19:04:15 -07:00
parent ee79885d76
commit c6321ef03d

View File

@ -1,7 +1,7 @@
# OpenEuphoria Cheat Sheet
### User input:
## User input:
Getting user input is easy, just make sure to include ```get.e``` and create a prompt like so:
@ -32,7 +32,7 @@ else
end if
```
### Compare Sequences
## Compare Sequences
You can use a couple of built-in functions to test strings or other sequences.
They are:
@ -46,7 +46,6 @@ Below is an example of using the compare function.
Notice with this function you need to check it against a number.
0 - true
1 - false
--------------