FutureBasic Logo

<<    Index    >> FutureBasic

BeginCCode   statement



Syntax
BeginCCode
// C statements
EndC

Description
Marks the beginning of a block of C language statements. The block must be terminated with the EndC statement. The C statements are copied untranslated into the C source code, then compiled by the C compiler.

BeginCCode
// the translator passes everything, except comments, untranslated to the compiler
// passed C code goes in current function or main()
EndC

See also
BeginCFunction; BeginCDeclaration; cln; EndC