Buchempfehlung
Windows System Programming
Windows System Programming
Das Kompendium liefert viele interessante Informationen zur Windows-Programmierung auf Englisch. [Mehr Infos...]
FreeBASIC-Chat
Es sind Benutzer im FreeBASIC-Chat online.
(Stand:  )
FreeBASIC bei Twitter
Twitter FreeBASIC-Nachrichten jetzt auch über Twitter erhalten. Follow us!

fb:porticula NoPaste

Info
Info / Hilfe
Liste
Übersicht / Liste
Neu
Datei hochladen
Suche
Quellcode suchen
Download
Dateidownload

Konsolentestprogramm für OPEN PIPE

Uploader:AdministratorSebastian
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