Validate homepage has been moved. Please venture to:

https://sphinxcontrib-confluencebuilder.atlassian.net/

v0.7-code

code

The following contains a series of code examples:

def main():
    print 'Hello, world!'

if __name__ == '__main__':
    main()
#include <stdio.h>

int main(void)
{
    printf("Hello, world!");
    return 0;
}
#include <iostream>

int main()
{
    std::cout << "Hello, world!";
    return 0;
}