mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-04-04 15:28:22 +00:00
29 lines
392 B
Python
29 lines
392 B
Python
# Generated by Haxe 4.0.5
|
|
# coding: utf-8
|
|
import sys
|
|
|
|
|
|
|
|
class Main:
|
|
__slots__ = ()
|
|
|
|
@staticmethod
|
|
def main():
|
|
print("Hello World")
|
|
|
|
|
|
class python_internal_MethodClosure:
|
|
__slots__ = ("obj", "func")
|
|
|
|
def __init__(self,obj,func):
|
|
self.obj = obj
|
|
self.func = func
|
|
|
|
def __call__(self,*args):
|
|
return self.func(self.obj,*args)
|
|
|
|
|
|
|
|
|
|
Main.main()
|