Writing Modules: Difference between revisions
From ASSS Wiki
Jump to navigationJump to search
No edit summary |
No edit summary |
||
| Line 5: | Line 5: | ||
The preferred language for simple modules is Python, because a poorly written module will not crash the entire server (Python is a safe language), while this is not the case for modules written in C. | The preferred language for simple modules is Python, because a poorly written module will not crash the entire server (Python is a safe language), while this is not the case for modules written in C. | ||
[[Writing Modules In C]] | *[[Writing Modules In C]] | ||
*[[Writing Modules In Python]] | |||
See also: [[Module Creation FAQ]|Creation FAQ] | |||
[[Module Creation FAQ]] | |||
Revision as of 02:06, 11 January 2005
ASSS modules can be written in either C or Python.
C modules are best suited for large, complex modules that need direct access to the core features of ASSS.
The preferred language for simple modules is Python, because a poorly written module will not crash the entire server (Python is a safe language), while this is not the case for modules written in C.
See also: [[Module Creation FAQ]|Creation FAQ]