index
:
clp.git
main
A small Python compiler with optimizer written in Java
Ubuntu
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
progs
/
a806.py
blob: bccb853580b5337e022d3c25b3910000aa2711ef (
plain
)
1
2
3
4
5
6
def largest_neg(list1): max = list1[0] for x in list1: if x < max : max = x return max