Skip to content
Snippets Groups Projects
add.py 88 B
Newer Older
  • Learn to ignore specific revisions
  • Alessandro Cerioni's avatar
    Alessandro Cerioni committed
    def add(x, y):
        return x + y
    
    
    if __name__ == "__main__":
    
        assert add(1, 2) == 3