コード例 #1
0
def procedure_environment(expr):
    return cadddr(expr)
コード例 #2
0
ファイル: conditional.py プロジェクト: wangfuli217/study
def if_alternative(expr):
    if cdddr(expr) is not EmptyList:
        return cadddr(expr)
    return False