mirror of
https://github.com/AdaCore/langkit.git
synced 2026-02-12 12:28:12 -08:00
11 lines
179 B
Python
11 lines
179 B
Python
|
|
import libfoolang as lfl
|
||
|
|
|
||
|
|
|
||
|
|
class App(lfl.App):
|
||
|
|
def process_unit(self, unit):
|
||
|
|
unit.root.dump()
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
App.run(['input3', 'input1', 'input2'])
|