fb:porticula NoPaste
Konsolentestprogramm für OPEN PIPE
Uploader: | Sebastian |
Datum/Zeit: | 07.01.2008 09:32:54 |
DIM e AS STRING
Print "Willkommen."
DO
INPUT "Eingabe: ", e
e=lcase(e)
IF e = "hallo" Then
Print "Ausgabe: Huhu!"
Elseif e = "lol" Then
Print "Ausgabe: rofl."
Elseif e = "exit" Then
Print "Ausgabe: Beende."
END
Else
Print "Ausgabe: Hae?!"
END IF
LOOP