Questions about this topic? Sign up to ask in the talk tab.

Template:Code

From NetSec
Revision as of 17:56, 27 June 2016 by Yggdrasi (Talk | contribs) (quick formatting fix)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search


Usage

Example:

{{code
|text=
<source lang="cpp">

int exampleFunction(int x, int y){
int Sum = x + y;
return Sum;
}

</source>
}}


Will give you:

 
int exampleFunction(int x, int y){
int Sum = x + y;
return Sum;
}