loona (the c programming language (book) and etc) created by rinidisc
Viewing sample resized to 40% of original (view original) Loading...
Description

Superior version of post #3833919 (uncompressed file from artist's website)

Source description (Tweet id# 1618052476967735299 by RiniDisc @RiniDisc; 24 Jan 2023; Twitter)

🥺

Blacklisted

    No, I perfer a more hands on approach.

    For real though, computer hardware is my bread and butter. There's just no good jobs where I'm at, can't wait to move... :c

  • |
  • 1
  • Mdf said:
    No, I perfer a more hands on approach.

    For real though, computer hardware is my bread and butter. There's just no good jobs where I'm at, can't wait to move... :c

    Hardware is your specialty and software?

  • |
  • 0
  • necromancer said:

    Hardware is your specialty and software?

    Probably just C, since C is a low level language, it's usually used to deal with computer hardware directly, so he might have some experience with it. It's just a guess, though

  • |
  • 1
  • I don't know how to program in C++, so I'll do it in Java.
    switch (affection)
    {
    case 1: system.out.println("She kills me"); break;
    case 2: system.out.println("she talks to me"); break;
    case 3: system.out.println("She hugs me"); break;
    case 4: system.out.println("She kiss me"); break;
    }
    PS: sorry if I made syntax errors

  • |
  • 0
  • lonely_feelings said:

    I don't know how to program in C++, so I'll do it in Java.
    switch (affection)
    {
    case 1: system.out.println("She kills me"); break;
    case 2: system.out.println("she talks to me"); break;
    case 3: system.out.println("She hugs me"); break;
    case 4: system.out.println("She kiss me"); break;
    }
    PS: sorry if I made syntax errors

    System* not system

    if you replace the system.out.println with printf and add \n, that's also valid C

    (though I suppose you could do this to *also* make it valid:

    struct { struct { void (*println)(char *); } out; } System;

    which is extremely cursed.
    but it would segfault if you don't initialize println to something

    )

  • |
  • 4