Developer's guide: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
Stub for page for the Developer's Guide. | Stub for page for the Developer's Guide. | ||
Test for syntax highlighting | |||
This is PHP: | |||
<syntaxhighlight lang="php"> | |||
<?php | |||
$v = "string"; // sample initialization | |||
?> | |||
html text | |||
<? | |||
echo $v; // end of php code | |||
?> | |||
</syntaxhighlight> | |||
This is IDL: | |||
<syntaxhighlight lang="fortran"> | <syntaxhighlight lang="fortran"> | ||
Revision as of 01:11, 11 February 2014
Stub for page for the Developer's Guide.
Test for syntax highlighting
This is PHP: <syntaxhighlight lang="php"> <?php
$v = "string"; // sample initialization
?> html text <?
echo $v; // end of php code
?> </syntaxhighlight>
This is IDL: <syntaxhighlight lang="fortran">
- OUTPUT
- Size of largest contiguous memory block available to IDL in megabytes.
- -
function get_max_memblock
compile_opt idl2, hidden
MB = 2L^20 ; one megabyte cblockSize = MB * 2047 ; two gigabytes end </syntaxhighlight>