Update README.md

This commit is contained in:
sam-astro 2022-05-27 20:21:27 -04:00 committed by GitHub
parent a8ed99a7b4
commit 68c5ef214f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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