mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 10:47:35 -05:00
14 lines
185 B
Python
14 lines
185 B
Python
def print_version(event):
|
|
import sys
|
|
|
|
print(event.type)
|
|
print(sys.version)
|
|
|
|
|
|
class Printer:
|
|
def version(self, event):
|
|
print_version(event)
|
|
|
|
|
|
printer = Printer()
|