Another update from ingydotnet^djgoku
This commit is contained in:
parent
91df62d461
commit
948b86eafa
7604 changed files with 108452 additions and 22726 deletions
25
Task/Menu/VBScript/menu.vb
Normal file
25
Task/Menu/VBScript/menu.vb
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
Do
|
||||
WScript.StdOut.Write "1. fee fie" & vbCrLf
|
||||
WScript.StdOut.Write "2. huff puff" & vbCrLf
|
||||
WScript.StdOut.Write "3. mirror mirror" & vbCrLf
|
||||
WScript.StdOut.Write "4. tick tock" & vbCrLf
|
||||
WScript.StdOut.Write "Please Enter Your Choice: " & vbCrLf
|
||||
choice = WScript.StdIn.ReadLine
|
||||
Select Case choice
|
||||
Case "1"
|
||||
WScript.StdOut.Write "fee fie" & vbCrLf
|
||||
Exit Do
|
||||
Case "2"
|
||||
WScript.StdOut.Write "huff puff" & vbCrLf
|
||||
Exit Do
|
||||
Case "3"
|
||||
WScript.StdOut.Write "mirror mirror" & vbCrLf
|
||||
Exit Do
|
||||
Case "4"
|
||||
WScript.StdOut.Write "tick tock" & vbCrLf
|
||||
Exit Do
|
||||
Case Else
|
||||
WScript.StdOut.Write choice & " is an invalid choice. Please try again..." &_
|
||||
vbCrLf & vbCrLf
|
||||
End Select
|
||||
Loop
|
||||
Loading…
Add table
Add a link
Reference in a new issue