OneCompiler

Divide function is added to my code!

105

Hello!

This is made a divide function!

 function divide(a,b)
  if a == 1 and b == 0 then
   print("Error")
   return 1
  end
  return a/b
 end