Skip to content

Instantly share code, notes, and snippets.

@mmkathurima
Last active February 5, 2023 10:18
Show Gist options
  • Save mmkathurima/05b86785198ca124c71817b6f76a0101 to your computer and use it in GitHub Desktop.
Save mmkathurima/05b86785198ca124c71817b6f76a0101 to your computer and use it in GitHub Desktop.
Height calculator meme in classic Visual Basic.
Imports Microsoft.VisualBasic
Module HeightCalc
Public Sub Main(args As String())
Dim getHeight As String = InputBox("Input your height in cm", "Height calculator tool")
MsgBox("Your height is " & getHeight & "cm!")
End Sub
End Module
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment