Peter's Blog

Redefining the Impossible

Updated drupal Wilki module


I updated my Wilki Drupal module to support more languages. There are drupal 4.4 and drupal 4.5 versions.

In addition to python and php it now supports:

  • vb
    dim i as integer
    
    let i = 1000
    print "vb sucks " & str(i) & " times"
    
  • perl
    $i = 1000;
    print "what are the dollars for $i times?";
    
  • c
    int i = 1000;
    
    printf( "c is old hat %d times", i);
    
  • cpp
    class i{
    public:
       int m_nComplex;
       char *m_strPretentious;
    };
    
  • bash
    $bash = $more + $dollars
    
  • java
    oThing.print( "all I know about java is that it's slow");
    
  • javascript
    DoSomethingAnnoying();
    
  • html
    <a href="www.yyy.zzz"><b>A site</b></a>
    

Instructions here.


Filed under: drupal php python wilki

Comments are Closed