Lua Division Function


SUBMITTED BY: Guest

DATE: Jan. 7, 2014, 8:21 p.m.

FORMAT: Text only

SIZE: 159 Bytes

HITS: 979

  1. function Divide(input1, input2)
  2. print(input1 / input2)
  3. end
  4. answer = Divide(input1, input2)
  5. -- That is where you write your inputs
  6. print(answer)

comments powered by Disqus