Skip to content

Commit

Permalink
Merge pull request #25 from sam-astro/dev
Browse files Browse the repository at this point in the history
Features and bug fix v2.1.1-alpha
  • Loading branch information
sam-astro authored May 28, 2022
2 parents ba92119 + 68c5ef2 commit 3040933
Show file tree
Hide file tree
Showing 12 changed files with 697 additions and 295 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func Main()

if s == "r"
{
print s + " is r"
Printl(s + " is r")
}

int functionNumber = ExampleFunction("A", s)
Expand All @@ -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
Expand Down
Loading

0 comments on commit 3040933

Please sign in to comment.