Changes between Version 3 and Version 4 of SandBox


Ignore:
Timestamp:
Apr 9, 2008, 4:17:47 PM (17 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TabularUnified SandBox

    v3 v4  
    44
    55Go ahead, edit it freely.
    6 
    7 
    8  - [WikiStart link to page start]
    9 
    10  - WikiStart
    11 
    12  - [/aubio link to page start]
    13 
    14 {{{
    15 #!python
    16 #! /usr/bin/python
    17 
    18 from aubio import *
    19 
    20 def main(): print "coucou"
    21 
    22 if __name__ == '__main__': main()
    23 }}}
    24 
    25 {{{
    26 #!c
    27 #include <aubio.h>
    28 int main() {
    29   return 0;
    30 }
    31 }}}