Difference between revisions of "The Recital Compiler"
From Recital Documentation Wiki
Barrymavin (Talk | contribs) m (The Recital Interpreter moved to The Recital Compiler) |
Barrymavin (Talk | contribs) (→How does it work) |
||
Line 1: | Line 1: | ||
==The Recital Compiler== | ==The Recital Compiler== | ||
===How does it work=== | ===How does it work=== | ||
+ | |||
+ | When you run a script, Recital compiles your script into a series of instructions for the Recital Virtual Machine. Unlike PHP, Recital only compiles a script once unless it detects that the source file is newer than the object file that it produces. | ||
+ | |||
+ | There is no need to manually compile scripts unless you need to do so to package up and deploy the object code only of your application. | ||
+ | |||
===Summary=== | ===Summary=== |
Revision as of 09:41, 21 October 2009
The Recital Compiler
How does it work
When you run a script, Recital compiles your script into a series of instructions for the Recital Virtual Machine. Unlike PHP, Recital only compiles a script once unless it detects that the source file is newer than the object file that it produces.
There is no need to manually compile scripts unless you need to do so to package up and deploy the object code only of your application.