|
|
Line 1: |
Line 1: |
| Stub for page for the Developer's Guide. | | Stub for page for the Developer's Guide. |
|
| |
|
| Test for syntax highlighting. | | Test for [[syntax_highlighting]]. |
| | |
| | |
| This is PHP using syntaxhighlight:
| |
| <syntaxhighlight lang="php">
| |
| <?php
| |
| $v = "string"; // sample initialization
| |
| ?>
| |
| html text
| |
| <?
| |
| echo $v; // end of php code
| |
| ?>
| |
| </syntaxhighlight>
| |
| | |
| IDL is not supported with syntaxhighlight.
| |
| | |
| This is IDL using syntaxhighlight lang="lisp"
| |
| <syntaxhighlight lang="lisp" enclose="pre" line>
| |
| | |
| ;OUTPUT:
| |
| ; Size of largest contiguous memory block available to IDL in megabytes.
| |
| ;
| |
| ;-
| |
| | |
| function get_max_memblock
| |
| | |
| compile_opt idl2, hidden
| |
| | |
| x = findgen(100)/10
| |
| y = sin(x)/x
| |
| plot,x,y
| |
| | |
| MB = 2L^20 ; one megabyte
| |
| cblockSize = MB * 2047 ; two gigabytes
| |
| end
| |
| </syntaxhighlight>
| |
| | |
| This is IDL using syntaxhighlight lang="exelis_idl"
| |
| <syntaxhighlight lang="exelis_idl">
| |
| | |
| ;OUTPUT:
| |
| ; Size of largest contiguous memory block available to IDL in megabytes.
| |
| ;
| |
| ;-
| |
| | |
| function get_max_memblock
| |
| | |
| compile_opt idl2, hidden
| |
| | |
| x = findgen(100)/10
| |
| y = sin(x)/x
| |
| plot,x,y
| |
| | |
| MB = 2L^20 ; one megabyte
| |
| cblockSize = MB * 2047 ; two gigabytes
| |
| end
| |
| </syntaxhighlight>
| |
| | |
| This is IDL using pre:
| |
| <pre style="border: 1px solid LightGray">
| |
| x = findgen(100)/10
| |
| y = sin(x)/x
| |
| plot,x,y
| |
| </pre>
| |
| | |
| | |
| This is IDL using source lang="idl":
| |
| <source lang="idl">
| |
| | |
| ;OUTPUT:
| |
| ; Size of largest contiguous memory block available to IDL in megabytes.
| |
| ;
| |
| ;-
| |
| | |
| function get_max_memblock
| |
| | |
| compile_opt idl2, hidden
| |
| | |
| x = findgen(100)/10
| |
| y = sin(x)/x
| |
| plot,x,y
| |
| | |
| MB = 2L^20 ; one megabyte
| |
| cblockSize = MB * 2047 ; two gigabytes
| |
| end
| |
| </source>
| |
| | |
| This is syntaxhighlight lang="-":
| |
| <syntaxhighlight lang="-"></syntaxhighlight>
| |