BASIC
This BASIC code fragment is a completely functioning program in which the comments describe what the program does for the benefit of novice programmers.
10 REM This BASIC program shows the use of the PRINT AND GOTO statements. 15 REM It fills the SCREEN with the word "WIKIPEDIA" 20 PRINT "WIKIPEDIA" 30 GOTO 20When run, this program repeatedly prints the word "WIKIPEDIA" (without quotes) in an infinite loop.
In Microsoft BASICs, including QuickBasic, Qbasic, Visual Basic and Visual Basic .NET, any text on a line after an ' (apostrophe) character is placed is marked as a comment. Lines that begin with 'REM' are treated as comments as well, similar to other BASIC dialects. Following is an example in Visual Basic .NET:
Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ' The following code is executed when the user ' clicks the button in the program's window. MessageBox.Show("Hello, World") 'Show a pop-up window with a greeting End Sub End ClassRead more about this topic: Comment (computer Programming), Examples, In Context
Famous quotes containing the word basic:
“Theres one basic rule you should remember about development charts that will save you countless hours of worry.... The fact that a child passes through a particular developmental stage is always more important than the age of that child when he or she does it. In the long run, it really doesnt matter whether you learn to walk at ten months or fifteen monthsas long as you learn how to walk.”
—Lawrence Kutner (20th century)
“Mental health depends upon the maintenance of a balance within the personality between the basic human urges and egocentric wishes on the one hand and the demands of conscience and society on the other hand.”
—Selma H. Fraiberg (20th century)
“The basic essential of a great actor is that he loves himself in acting.”
—Charlie Chaplin (18891977)