Last active
February 5, 2023 10:18
-
-
Save mmkathurima/05b86785198ca124c71817b6f76a0101 to your computer and use it in GitHub Desktop.
Height calculator meme in classic Visual Basic.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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