Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

index.html

Blame
  • nested.py 117 B
    
    
    def sum(a, b):
        return a + b
    
    def mul(a, b):
        return a * b
    
    print(sum(mul(18, sum(3, 0)), sum(mul(2, 2), 4)))