ActiveState Code

Recipe 576558: Test


delete me

C++
1
2
3
for (i=0; i++; i<10) {
    cout << i;
}

Discussion

this discussion is futile

Comments

  1. 1. At 1:33 p.m. on 7 nov 2008, eva luation (the author) said:

    test123

  2. 2. At 5:04 p.m. on 7 nov 2008, David Lambert said:

    Ooops, now that I've read the python ctypes module manual more carefully I realize that I can write callback functions in python without any c code. I can, for example, use gsl qag routine directly from python.

  3. 3. At 5:15 p.m. on 7 nov 2008, David Lambert said:

    And furthermore, I convert the function to a suitable callback with a decorator. Now that's pretty.

Sign in to comment