Execute SNUSP/D: Difference between revisions

m
Categorization now in master page
m (<lang>)
m (Categorization now in master page)
Line 1:
{{implementation|SNUSP}}{{collection|RCSNUSP}}[[Category:D]]
 
This [[D]] implementation supports commands from all the three SNUSP variants, as described on the [[eso:SNUSP|Esolang SNUSP page]], plus an extended mode, '''SUPERNATURAL'''.
 
'''SUPERNATURAL Mode''':
Line 25:
:::==a^A&lt;=cp==B^==&lt;=C^==
::when the code pointer cp heading into A's^, next turn, the code pointer will be in C. if no such ^ in the reverse direction, the code pointer will be in ''a'' next turn.
<lang d>module snud ;
module snud ;
private import std.string, std.random ;
 
Line 211 ⟶ 210:
private char[char] acceptCmd ;
private uint Id = 0 ;
}</lang>
}
</lang>
Sample SNUSP using a console io :
<lang d>module rcsnusp ;
module rcsnusp ;
import snud ;
import std.stdio, std.file, std.conv ;
Line 266 ⟶ 263:
 
return result ;
}</lang>
}
</lang>
Anonymous user