root / JFP / examples / division.py

Revision 104:1d060e571377, 72 bytes (checked in by Tarek Ziad?? <tarek@…>, 20 months ago)

initial commit for jpf slides

Line 
1
2def division(a, b):
3
4    if b == 0:
5        return 0
6    return a / b
Note: See TracBrowser for help on using the browser.