mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-13 23:12:24 +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()
|