mirror of
https://github.com/github/codeql.git
synced 2025-12-24 20:56:33 +01:00
5 lines
100 B
Python
5 lines
100 B
Python
def area(r):
|
|
#if DEBUG:
|
|
# print("Computing area of %r" % r)
|
|
return r.length * r.width
|