You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Following code prints three lines contains "One", "Two" and "Three" in Small Basic Desktop. Because the first line of the code initializes the variable arry as an array. But nothing will be printed in Small Basic Online because the variable is set as a string.
arry = "1=One;2=Two;3=Three;"
For i = 1 To 3
TextWindow.WriteLine(arry[i]) ' print One/Two/Three
EndFor
This issue is filed to recognize SBD parity.
The text was updated successfully, but these errors were encountered:
Following code prints three lines contains "One", "Two" and "Three" in Small Basic Desktop. Because the first line of the code initializes the variable
arry
as an array. But nothing will be printed in Small Basic Online because the variable is set as a string.This issue is filed to recognize SBD parity.
The text was updated successfully, but these errors were encountered: