#!/usr/bin/python

from idiopidae.runtime import Composer
import sys

c = Composer()

for file in sys.argv[1:]:
    print c.process(file)
