Ok, I'll bite, whats this section about?

Discussion in 'Byte Chat' started by Raaynn, Apr 23, 2022.

  1. Haha, just kidding.....

    Well not really a programmer, but I dabbled at various times in my life... made me recall my first program.
    Do you recall yours?

    My first program was I think in unix... a simple game flying an "airplane" and shooting all the oncoming "rocks"

    ... all the onscreen elements had to be keyboard symbols. ... around 1977.
    KatydidBuild, 607 and MoreMoople like this.
  2. That sounds impressive, for a first program!

    I'll see if I can find mine. :D
    Here is my first GFA-BASIC program, made with my best friend on October 14th, 2009.
    Code:
    'ik ga de VARIABELEN van thuis overschrijven'
    Local toets$
    
    'nou de window van thuis'
    OpenW 1
    
    SetFont "Courier New"
    
    PrintScroll = 1
    'we kopieeren ze even'
    
    AutoRedraw = 1
    PrintWrap = 1
    
    'nu beginnen we!'
    Print "we gaan schatzoeken!"
    start:
    Print
    Print "We staan bij de START.Waar wil je heen?"
    Print "1)naar de woonkamer"
    Print "2)naar de slaapkamer"
    Print "3)naar de keuken"
    'de volgende keer maken we dat het echt werkt
    
    Pause 50
    
    CloseW 1
    
    It is not functional. :p My father made a start to a text adventure as an example, and my friend and I were following that but exchanging it with our own options. The comment at the end (above Pause 50) says "next time we'll make it that it really works". There was no next time. :rolleyes: