Files
gtav-src/tools_ng/bin/python/App/Lib/test/test_future2.py
T
2025-09-29 00:52:08 +02:00

11 lines
161 B
Python
Executable File

"""This is a test"""
from __future__ import nested_scopes; import string
def f(x):
def g(y):
return x + y
return g
result = f(2)(4)