From 68c5ef214f22d143f5fa4270e353c0ac60d1390f Mon Sep 17 00:00:00 2001 From: sam-astro <77079540+sam-astro@users.noreply.github.com> Date: Fri, 27 May 2022 20:21:27 -0400 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3a8d766..9b52781 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ func Main() if s == "r" { - print s + " is r" + Printl(s + " is r") } int functionNumber = ExampleFunction("A", s) @@ -99,8 +99,8 @@ func Main() /// be assigned at all on execute and can be left blank func ExampleFunction(inputA, inputB) { - print "In A is: " + inputA - print "In B is: " + inputB + Printl("In A is: " + inputA) + Printl("In B is: " + inputB) // Return a value to the valling location return 4