I was definitely a Commodore kid, and BASIC was my first language. Maybe it’s nostalgia, but I still like BASIC for hobby stuff.

  • @[email protected]
    link
    fedilink
    English
    22
    edit-2
    8 months ago

    Thanks, BASIC, for teaching me so much I had to later unlearn in order to not be a garbage programmer.

  • @Bricriu
    link
    English
    108 months ago

    I learned TI BASIC on a Texas Instruments 99/4a back in the very early 80s. Wrote some programs from magazines, saved them on tapes, and went on to automate D&D character creation in an attempt to rules-lawyer an all-PC dwarf army.

    Fun fact, though: TI BASIC lived on until at least the late 90s, on the TI graphing calculators that everyone taking Algebra/Trig had to buy – or borrow from the school. I wrote a surreal choose-your-own-adventure game on my calculator, large enough that because of memory limitations, you couldn’t open the file to edit it without deleting another, ancillary file.

    And since you could transfer programs via a proprietary cable, I put that game on every school calculator and as many of my friends’ as wanted it. It was still there years later when I visited.

    • chingadera
      link
      38 months ago

      This is that real gangster shit in case any of you were wondering

    • @[email protected]
      link
      fedilink
      28 months ago

      TI BASIC is still on my TI-84+ CE calculator that I use today

      I’m not sure if the Python edition TI 84 supports it though

  • 🇰 🌀 🇱 🇦 🇳 🇦 🇰 ℹ️
    link
    fedilink
    English
    8
    edit-2
    8 months ago

    Easiest Hello World program ever was in BASIC.

    10 PRINT "Hello World"
    20 GOTO 10
    

    Don’t even have to call a library or declare a variable! Meanwhile, I can’t even remember the shit you need to put in front of every C/C++ program (HREF/void.h or something; it’s usually there automatically these days in some compilers, like Visual Studio).

    • @[email protected]
      link
      fedilink
      2
      edit-2
      8 months ago

      C

      #include <stdio.h>

      int main() {

      printf(“Hello, world”);

      return 0;

      }

      C++

      #include <iostream>

      int main() {

      std::cout << “Hello, world” << std::endl;

      return 0;

      }

    • @wjrii
      link
      English
      98 months ago

      In a world with GORILLA.BAS and NIBBLES.BAS, I simply cannot reject the QBASIC faith with which I was raised.

    • @thehatfox
      link
      English
      5
      edit-2
      8 months ago

      There is an open source implementation of BBC Basic for modern systems that’s being actively developed - BBC BASIC for SDL 2.0.

      • Shelldor
        link
        fedilink
        48 months ago

        It is great with lots of libraries. I am writing a game in it right now.

    • Boddhisatva
      link
      fedilink
      48 months ago

      Bring it! I once wrote a basic program off of the random dungeon generator tables in the original Advanced Dungeons and Dragons - Dungeon Masters Guide using Atari BASIC.

    • gregorum
      link
      fedilink
      English
      2
      edit-2
      8 months ago

      GPL BASIC. First language I learned when I was 5 in 1984.

      10 PRINT “Hello world!”
      20 END
      
      • LucasWaffyWaf
        link
        4
        edit-2
        8 months ago

        10 PRINT “Sausage slaps”

        20 GOTO 10

        • Nemo Wuming
          link
          6
          edit-2
          8 months ago
          • 10 PRINT “What is your name?”
          • 20 INPUT $NAME
          • 30 PRINT "Wet noodle slaps " + $NAME
          • 40 GOTO 30
      • @SpaceNoodle
        link
        38 months ago

        GPL as in the GPL? I thought that was first published in 1989

        • gregorum
          link
          fedilink
          English
          38 months ago

          Oh, I guess I was just using Apple’s Intiger BASIC then!

  • @thehatfox
    link
    English
    68 months ago

    There are so many weird and wonderful BASIC dialects found on all sorts of platforms.

    In Europe the PlayStation 2 shipped with a version of Yabasic on the bundled demo disc. It was an attempt to avoid some of import taxes by claiming the PS2 was a computer instead of a games console.

  • ma11en
    link
    68 months ago

    Sinclair Spectrum 48k Basic for me.

  • katy ✨
    link
    fedilink
    4
    edit-2
    8 months ago

    went to computer camp in the early 90s (yes i was the stereotype) and we learned basic programming on radio shack computers (the monitor/keyboard combined type - i can’t remember the name)

    then i moved on to qbasic and started programming basic type text adventure games with inventory management in my spare time :)

    edit: looking it up, i believe it was the trs-80. it looks familiar but i’m not 100% positive. could have also been the model ii

  • @[email protected]
    link
    fedilink
    27 months ago

    oh the memories - I started with Commodore BASIC on the C-64. Second Basic (after 6502 Assembler) was AmigaBasic. Oh god, it was soooo slow. Scrolling though your code, you could watch the lines being printed. Finally I bought (!) GFA Basic - that was great! Probably spoiled my programming habits till now! :)

  • @blazeknave
    link
    28 months ago

    First line of code was in qbasic in 88

  • @[email protected]
    link
    fedilink
    28 months ago

    I found that the simpler, early BASIC dialects were a good primer for assembly language. You had to create all the structure from jumps to numeric values. Goto and gosub mapped on to jump and call instructions.

    Using labels in assembly was a step up from line numbers!