Staging
v0.8.1
Revision 98be9d500e512ef860b2469c39372424b7aea53f authored by Larry Hastings on 25 June 2016, 21:44:30 UTC, committed by Larry Hastings on 25 June 2016, 21:44:30 UTC
1 parent 27d3529
Raw File
badsyntax_future3.py
"""This is a test"""
from __future__ import nested_scopes
from __future__ import rested_snopes

def f(x):
    def g(y):
        return x + y
    return g

result = f(2)(4)
back to top