7 lines
254 B
Plaintext
7 lines
254 B
Plaintext
![]() |
[source,vb6]
|
||
|
----
|
||
|
Rem FIXME: Add documentation - Noncompliant
|
||
|
Function Divide(ByVal Numerator As Integer, ByVal Denominator As Integer) As Integer
|
||
|
Divide = Numerator / Denominator ' FIXME: Denominator value might be 0 - Noncompliant
|
||
|
End Function
|
||
|
----
|