From b818dc6c3552263a0d48cbb41cb15c30461fa1f4 Mon Sep 17 00:00:00 2001 From: mollusk Date: Wed, 31 May 2017 13:47:33 -0700 Subject: [PATCH] Added new lines to puts statement in 'equal' example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 353cf52..492bd24 100644 --- a/README.md +++ b/README.md @@ -78,9 +78,9 @@ sequence mystring mystring = "hello" if equal(mystring, "hello") then - puts(1,"The condition is true!") + puts(1,"The condition is true!\n") else - puts(1,"The condition is false!") + puts(1,"The condition is false!\n") end if ``` ----------------