#Visual Basic.NET, 39 bytes
Visual Basic.NET, 39 bytes
Function F(x,y)
Return x+y
End Function
Without Option Strict On (which you definitely want for any real coding), no data types are required (As type).
With Option Strict On:
Function F(x As Integer,y As Integer) As Integer
Return x+y
End Function
#Visual Basic.NET, 39 bytes
Function F(x,y)
Return x+y
End Function
Without Option Strict On (which you definitely want for any real coding), no data types are required (As type).
With Option Strict On:
Function F(x As Integer,y As Integer) As Integer
Return x+y
End Function
Visual Basic.NET, 39 bytes
Function F(x,y)
Return x+y
End Function
Without Option Strict On (which you definitely want for any real coding), no data types are required (As type).
With Option Strict On:
Function F(x As Integer,y As Integer) As Integer
Return x+y
End Function
#Visual Basic.NET, 39 bytes
Function F(x,y)
Return x+y
End Function
Without Option Strict On (which you definitely want for any real coding), no data types are required (As type).
With Option Strict On:
Function F(x As Integer,y As Integer) As Integer
Return x+y
End Function