/usr/share/doc/sludge/SLUDGEDevKitHelp/spawnSub.html is in sludge-doc 2.2.1-2build2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<TITLE>spawnSub</TITLE>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<BODY>
<HR>
<div align="center"><img id="headerGraphic" src="images/sludge300.png" alt="SLUDGE"/></div>
<h2>spawnSub</h2>
<HR>
<H3>Syntax:</H3>
<P>
<pre class="syntax">spawnSub (<i>thisFunction</i>);</pre>
</P>
<H3>Purpose:</H3>
<P>
Starts <i>thisFunction</i> while continuing the current function at the same time. The <i>thisFunction</i> function must take no parameters and will be<b> started the next time the screen updates</b>. Execution of the function containing the call to spawnSub will continue first.
</P>
<H3>Return value:</H3>
<P>
No return value.
</P>
<H3>Example:</H3>
<P>
<pre>var a;
sub init () {
a = 10;
spawnSub (setA);
a = 20;
say (ego, a);
# The ego character will now be saying "20"
# The init function will be paused because of the say command...
# ...giving the spawned function chance to execute
say (ego, a);
# The ego character will now be saying "30"
}
sub setA () {
a = 30;
}</pre>
</P>
<H3>See also:</H3>
<P>
<a href="Functions_(subs).html">Functions (subs)</a>
</P>
<P class="copyright-notice">SLUDGE and this SLUDGE documentation are <A HREF="Copyright.html">copyright</A> Hungry Software and contributors 2000-2012
</P>
<HR>
</BODY>
</html>
|