MorganBorman / rayage

A simple web IDE for intro programming students.
1 stars 2 forks source link

ClangCompiler integration #19

Closed philipbjorge closed 12 years ago

philipbjorge commented 12 years ago

Usage:

from compiler import *
c=ClangCompiler()
c.compile(["test.c"], "test.out")
print c.errors()
MorganBorman commented 12 years ago

That's awesome.