;**********************************;**                              **;**   ACTION! Magazin Programme  **;**                              **;**  (c) 1991 by ACTION! Magazin **;**                              **;**   ATARI BIT BYTER USER CLUB  **;**                              **;**                              **;**********************************;Programmname : HELLO WORLD;Autor        : Carsten Strotmann;Copyright    : ACTION! Magazin;;PROC Hello_World ()BYTE ARRAY user_name (20)  Put (125)  Position (5,10)  Print ("Hallo Welt !")  Position (5,12)  Print ("Wie heisst du ?")  InputS (user_name)  Position (5,14)  Print ("Hallo ")  PrintE (user_name)RETURN