diff --git a/README.md b/README.md index 42b1fde..16dbad6 100644 --- a/README.md +++ b/README.md @@ -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: @@ -45,8 +45,7 @@ equal("string1, "string2") 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 +0 - true --------------