diff --git a/packages/python/3.10.0a7/test.py b/packages/python/3.10.0a7/test.py index f8bcd5c..c3135e2 100644 --- a/packages/python/3.10.0a7/test.py +++ b/packages/python/3.10.0a7/test.py @@ -1,18 +1,7 @@ -execute = (execute_with := lambda *a, **k: lambda f: f(*a, **k))() +working = True - -@int -@execute -class n: __int__ = lambda _: 69 - - -@execute -class cout: __lshift__ = print - - -@execute_with(n) -def output(n): - return "OK" - - -cout << output +match working: + case True: + print("OK") + case False: + print() \ No newline at end of file