root / RuPy / examples / division.py

Revision 79:d49b898f3abd, 72 bytes (checked in by Tarek Ziad?? <tarek@…>, 21 months ago)

added example

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.