Free Pascal <-> Basic | Single line comment
Free Pascal Used keywords: //
//
Description
//
Data:
- text -
Examples
Free Pascal
Single line comment the possible of use:x := 5 * y; // x = xy
// y = 123;
if x > 0 then // x == true
x:=5;
.
Basic Used keywords: '
'
Description
'
Examples
Basic
Single line comment the possible of use:x = 5 * y ' x = xy
' y = 123;
if x > 0 then ' x == true
x=5
end if
Free Pascal Used keywords: //
//
Description
//
Data:
- text -
Examples
Free Pascal
Single line comment the possible of use:x := 5 * y; // x = xy
// y = 123;
if x > 0 then // x == true
x:=5;
.
Basic Used keywords: rem
REM
Description
REM
Examples
Basic
Single line comment the possible of use:x = 5 * y ' x = xy
' y = 123;
if x > 0 then ' x == true
x=5
end if
Single line comment in another programming language:
Differences to: