Comment (computer Programming) - Examples - in Context - BASIC

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 20

When 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 Class

Read more about this topic:  Comment (computer Programming), Examples, In Context

Famous quotes containing the word basic:

    The basic idea which runs right through modern history and modern liberalism is that the public has got to be marginalized. The general public are viewed as no more than ignorant and meddlesome outsiders, a bewildered herd.
    Noam Chomsky (b. 1928)

    The basic rule of human nature is that powerful people speak slowly and subservient people quickly—because if they don’t speak fast nobody will listen to them.
    Michael Caine [Maurice Joseph Micklewhite] (b. 1933)

    ... in Northern Ireland, if you don’t have basic Christianity, rather than merely religion, all you get out of the experience of living is bitterness.
    Bernadette Devlin (b. 1947)