mirror of
https://github.com/XAMPPRocky/tokei.git
synced 2026-05-28 00:20:57 +02:00
a1ed92df28
* Added VB6 Support https://en.wikipedia.org/wiki/Visual_Basic * Added tests and removed frx Removed frx: .frx is a compainon binary file to .frm (vb6 forms). It contains binary artifacts like images, but its format is proprietary.
13 lines
274 B
VB.net
13 lines
274 B
VB.net
' 12 lines 6 code 3 comments 3 blanks
|
|
Attribute VB_Name = "Module1"
|
|
Public Function SayHello(Name As String)
|
|
|
|
' Create a response string
|
|
Dim Response As String
|
|
Response = "Hello " & Name
|
|
|
|
'Return response string
|
|
SayHello = Response
|
|
|
|
End Function
|