-
Notifications
You must be signed in to change notification settings - Fork 52
Manual:DIL Manual Functions
iamnove edited this page Jan 18, 2023
·
55 revisions
DIL features an extended set of built-in functions for extended program control. Built-in functions can be part of any expression in DIL. The built-in functions are listed later.
Example:
dilbegin foo(); code { exec("say I exist in "+itoa(self.loaded)+"copies", self); pause; } dilend
DIL also lets you use templates as functions, but in a limited way. Using templates as functions, you may only use the return value to assign it to one of the variables declared in the 'var' section. No fields.
Example:
dilbegin integer bar(s:string); code { exec("say "+s,self); return rnd(1,10); } dilend
dilbegin foo(); external integer bar(s:string); var myint:integer; code { myint := bar("rolling the dice."); exec("say I rolled a "+itoa(myint)); pause; } dilend
---~---~---~---~---~---~---~---~---