There is no spoon

Unreal Wiki:Sandbox

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 01:54, 18 February 2008 by Haarg (Talk | contribs)

Jump to: navigation, search

Do not edit the area above the separator line, please.


  • This correctly replaces, but for obvious reasons doesn't produce links correctly: a, [b]], [c]]
  • This doesn't even apply #replace: [[{{#replace:a,b,c|,|]], [[}}]]
  • This works, but is very ugly: a, b, c
  • Still ugly, but a bit better: a, b, c

Current UScript highlighter

  1. class TestCommandlet extends Commandlet;
  2.  
  3. function int Main(string Args)
  4. {
  5.   DynamicLoadObject(Args, class'Class');
  6.  
  7.   return 0;
  8. }

Other languages available as well:

my $line = <>;
chomd $line;
if ($line =~ /^y/i) {
    print "You answered yes!\n";
}
else {
    print "You answered no!\n";
}