From c6321ef03dbcdc1eb1f73a11ca564ea8f486bbe9 Mon Sep 17 00:00:00 2001 From: mollusk Date: Tue, 19 Jul 2016 19:04:15 -0700 Subject: [PATCH] False wasn't used in the example so removed --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 --------------