Backward / Reverse Text Program Made With Small Basic

Опубликовано: 03 Июнь 2026
на канале: Small Basic Coder
6
0

Hello, in this video we will learn how to program in Small Basic to make Backward text software.

I hope you like this video, and dont forget to subscribe or like this video. Thank you.

The code is:
TextWindow.Write("What is the string: ")
string = TextWindow.Read()

len = Text.GetLength(string)
For i = 0 To len
div[i] = Text.GetSubText(string,i,1)
'TextWindow.WriteLine(div[i])
EndFor

TextWindow.Write("Backward is: ")
For i = len To 0 Step -1
'TextWindow.Write("Help")
TextWindow.Write(div[i])
EndFor
TextWindow.WriteLine("")
TextWindow.Read()


#smallbasic #smallbasicprogramming