Skip to content
Snippets Groups Projects
sumfac.py 90 B
Newer Older
  • Learn to ignore specific revisions
  • tuhe's avatar
    tuhe committed
    def sumlist( ls ):
        return sum(ls)
    
    if __name__ == "__main__":
        sumlist([1, 4, 4])