mirror of
https://github.com/rzzzwilson/pymlac.git
synced 2025-06-10 09:32:41 +00:00
13 lines
190 B
Python
Executable File
13 lines
190 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
#from Globals import *
|
|
|
|
class Test1(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
def alpha(self):
|
|
global instruction_cycles
|
|
instruction_cycles += 2
|
|
|