Difference between revisions of "Writing Modules"

From ASSS Wiki
Jump to: navigation, search
m
Line 8: Line 8:
 
*[[Writing Modules In Python]]
 
*[[Writing Modules In Python]]
  
See also: [[Module Creation FAQ]|Creation FAQ]
+
See also: [[Module Creation FAQ|Creation FAQ]]

Revision as of 22:06, 10 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: Creation FAQ