Changes between Version 3 and Version 4 of SandBox
- Timestamp:
- Apr 9, 2008, 4:17:47 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified SandBox
v3 v4 4 4 5 5 Go ahead, edit it freely. 6 7 8 - [WikiStart link to page start]9 10 - WikiStart11 12 - [/aubio link to page start]13 14 {{{15 #!python16 #! /usr/bin/python17 18 from aubio import *19 20 def main(): print "coucou"21 22 if __name__ == '__main__': main()23 }}}24 25 {{{26 #!c27 #include <aubio.h>28 int main() {29 return 0;30 }31 }}}