Xojo is an open source programming language created in 1996.
#414on PLDB | 28Years Old | 570Repos |
The Xojo programming environment is developed and commercially marketed by Xojo, Inc. of Austin, Texas for software development targeting macOS, Microsoft Windows, Linux, iOS, the Web and Raspberry Pi. Xojo uses a proprietary object-oriented BASIC dialect, also known as Xojo.. Read more on Wikipedia...
Function Run(args() as String) As Integer
Print "Hello World"
Quit
End Function
#tag Toolbar
Begin Toolbar MyToolbar
Begin ToolButton FirstItem
Caption = "First Item"
HelpTag = ""
Style = 0
End
Begin ToolButton SecondItem
Caption = "Second Item"
HelpTag = ""
Style = 0
End
End
#tag EndToolbar
Dim names() As String = Array("Red Sox", "Yankees", "Orioles", "Blue Jays", "Rays")
For i As Integer = 0 To names.UBound
ListBox1.AddRow(names(i))
Next
Feature | Supported | Example | Token |
---|---|---|---|
Strings | ✓ | "Hello world" | " |
Print() Debugging | ✓ | ||
Line Comments | ✓ | // A comment | // |
Comments | ✓ | ||
Semantic Indentation | X |