Include a file: Difference between revisions

Add Processing
m (→‎{{header|Retro}}: update for retro12)
(Add Processing)
Line 1,083:
. .\MyFunctions.ps1
</lang>
 
 
=={{header|Processing}}==
Processing sketches ''automatically'' include include any Processing .pde or Java .java files in the sketch directory. All .pde files are concatenated together and processed as if they were one big file. Each .java file is compiled to a Java class and the class is automatically imported.
 
Processing also supports the import keyword for explicitly including Processing / Java 8 libraries.
 
<lang processing>import java.util.Map;
import g4p_controls.*;</lang>
 
 
=={{header|Prolog}}==