Difference between revisions of "Lua"
Jump to navigation
Jump to search
(Created page with "Category:SoftwareCategory:Programming LanguageCategory:Scripting {|<!--CONFIGURATION: REQUIRED--> |{{#vardefine:app|lua}} |{{#vardefine:url|http://www.lua.org/}} <...") |
Moskalenko (talk | contribs) m (Text replacement - "#uppercase" to "uc") |
||
Line 26: | Line 26: | ||
Run <code>module spider {{#var:app}}</code> to find out what environment modules are available for this application. | Run <code>module spider {{#var:app}}</code> to find out what environment modules are available for this application. | ||
==System Variables== | ==System Variables== | ||
− | * HPC_{{ | + | * HPC_{{uc:{{#var:app}}}}_DIR - installation directory |
− | * HPC_{{ | + | * HPC_{{uc:{{#var:app}}}}_BIN - executable directory |
− | * HPC_{{ | + | * HPC_{{uc:{{#var:app}}}}_LIB - library directory |
− | * HPC_{{ | + | * HPC_{{uc:{{#var:app}}}}_INC - includes directory |
<!--Configuration--> | <!--Configuration--> | ||
{{#if: {{#var: conf}}|==Configuration== | {{#if: {{#var: conf}}|==Configuration== |
Revision as of 21:21, 6 December 2019
Description
Lua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven programming, and data description.
Lua combines simple procedural syntax with powerful data description constructs based on associative arrays and extensible semantics. Lua is dynamically typed, runs by interpreting bytecode with a register-based virtual machine, and has automatic memory management with incremental garbage collection, making it ideal for configuration, scripting, and rapid prototyping.
Environment Modules
Run module spider lua
to find out what environment modules are available for this application.
System Variables
- HPC_LUA_DIR - installation directory
- HPC_LUA_BIN - executable directory
- HPC_LUA_LIB - library directory
- HPC_LUA_INC - includes directory