Source Code To Visualize The Object-Oriented Syntax Of SMALL BASIC ...
Objects - Methods - Arguments ...
The dot-notation is important to code the right way ...
Post #197: Source code to visualize the oo-syntax of Small Basic, 2024.

seen from Malaysia
seen from China
seen from United States

seen from Italy
seen from United States
seen from Türkiye
seen from United States
seen from Italy

seen from France
seen from United States

seen from Poland

seen from United States

seen from France
seen from China

seen from United States

seen from Brazil
seen from Yemen

seen from United States
seen from Germany

seen from Brazil
Source Code To Visualize The Object-Oriented Syntax Of SMALL BASIC ...
Objects - Methods - Arguments ...
The dot-notation is important to code the right way ...
Post #197: Source code to visualize the oo-syntax of Small Basic, 2024.
The Object-Oriented Syntax Of Small Basic
Object - Method - Argument
Small Basic and its object-oriented Syntax
GraphicsWindow is an object built into Small Basic that takes text input and sends text output to your screen. DrawText() is a method of the GraphicsWindow object. This method displays the data passed to it in the output window. When you use GraphicsWindow.DrawText(), you tell the the GraphicsWindow object to execute its DrawText method. This is known as <dot notation> because of the dot between the object and method. Dot notation is used to access an object's method and follows this format:
ObjectName.MethodName(Arguments)
In this example "Hello World!" is an argument to the DrawText() method. It tells the method exactly what you want to write.
< Marji & Price >
Post #194: The OOP-Syntax of Small Basic, 2024.