16 lines
226 B
Python
16 lines
226 B
Python
from tests.test_utils import *
|
|
|
|
@Commentor(fmt=[
|
|
(type(None), lambda o: None),
|
|
|
|
])
|
|
def function():
|
|
mystring = 'hello'
|
|
print(mystring)
|
|
mystring = "hello"
|
|
print(mystring)
|
|
return 1
|
|
|
|
|
|
print(function())
|