Skip to content

Commit 3040933

Browse files
authored
Merge pull request #25 from sam-astro/dev
Features and bug fix v2.1.1-alpha
2 parents ba92119 + 68c5ef2 commit 3040933

File tree

12 files changed

+697
-295
lines changed

12 files changed

+697
-295
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func Main()
8585

8686
if s == "r"
8787
{
88-
print s + " is r"
88+
Printl(s + " is r")
8989
}
9090

9191
int functionNumber = ExampleFunction("A", s)
@@ -99,8 +99,8 @@ func Main()
9999
/// be assigned at all on execute and can be left blank
100100
func ExampleFunction(inputA, inputB)
101101
{
102-
print "In A is: " + inputA
103-
print "In B is: " + inputB
102+
Printl("In A is: " + inputA)
103+
Printl("In B is: " + inputB)
104104

105105
// Return a value to the valling location
106106
return 4

0 commit comments

Comments
 (0)