WordBASIC

WordBASIC was a subset of Microsoft QuickBASIC customized for word-processing. It was replaced by Visual Basic for Applications (VBA) when Word 97 was released. Contrarily to VBA, WordBasic was not object-oriented but consisted of a flat list of approximately 900 commands.[1]

WordBASIC
DeveloperMicrosoft
First appeared1989 (1989)
OSMicrosoft Windows, Mac OS X
LicenseCommercial proprietary software
Influenced by
QuickBASIC

Example code

The following code snippets show the difference between WordBasic and VBA with a "Hello, World!" example:[2]

WordBasic:

Sub MAIN
FormatFont .Name = "Arial", .Points = 10
Insert "Hello, World!"
End Sub

VBA:

Public Sub Main()
    With Selection.Font
        .Name = "Arial"
        .Size = 10
    End With
    Selection.TypeText Text:="Hello, World!"
End Sub
gollark: I wonder if people would find Haskell etc. more intuitive if they started on it and were not exposed to Cish languages.
gollark: Bees aren't apioforms.
gollark: Hash it plus a random salt. Release the guesses and salt later.
gollark: https://arxiv.org/abs/1811.11041
gollark: Okay, yes, I am wildly stereotyping very incorrectly, bipolar is over days to weeks.

References

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.