Oxygen Basic
Programming => Bugs & Feature Requests => Topic started by: Brian Alvarez on July 24, 2019, 01:06:23 PM
-
Hello Charles, i am finally playing with sound and music. Everything works flawless now. Its a joy to program like this!!
But i found a small issue with brackets, its not too severe and there are ways to work around it, but i figured you would
want to tackle it.
This works:
FUNCTION TESTFUNC(ASCIIZ nret[0]) AS STRING
END FUNCTION
print TestFunc("Hello" + " World", 0)
This doesnt compile:
FUNCTION TESTFUNC(ASCIIZ nret[0]) AS STRING
END FUNCTION
print TestFunc(bycopy ("Hello" + " World"), 0)