Changes between Version 2 and Version 3 of SandBox


Ignore:
Timestamp:
Oct 31, 2007, 11:45:53 AM (16 years ago)
Author:
Paul Brossier
Comment:

added some highlighted code

Legend:

Unmodified
Added
Removed
Modified
  • SandBox

    v2 v3  
    1111
    1212 - [/aubio link to page start]
     13
     14{{{
     15#!python
     16#! /usr/bin/python
     17
     18from aubio import *
     19
     20def main(): print "coucou"
     21
     22if __name__ == '__main__': main()
     23}}}
     24
     25{{{
     26#!c
     27#include <aubio.h>
     28int main() {
     29  return 0;
     30}
     31}}}