aubio
Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Changes between
Version 2
and
Version 3
of
SandBox
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
Oct 31, 2007, 11:45:53 AM (
17 years
ago)
Author:
Paul Brossier
Comment:
added some highlighted code
Legend:
Unmodified
Added
Removed
Modified
SandBox
v2
v3
11
11
12
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
}}}