Skip to content
View MieldewMeat's full-sized avatar
🥩
Hungry
🥩
Hungry

Block or report MieldewMeat

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MieldewMeat/README.md

MieldewMeat

#include "stddef.h"
#include "stdint.h"

typedef struct language{
    struct language *next;
    const char *name;
} language_t;

static language_t *start = NULL;
static language_t *end = NULL;

static void addLang(language_t *added){
    added->next = NULL;

    if(!start){
        start = end = added;
        return;
    }

    end->next = added;
    end = added;
}

void kmain(){
    const char *pronuns[] = {"he", "him"};
    
    static language_t languages[] = {
        {.name = "C"},
        {.name = "C++"},
        {.name = "Java"}
    };

    for(size_t i = 0; i < 3; i++) addLang(&languages[i]);

    uint64_t howManyWorksDone = 3;
    int64_t yearsFromEndingSchool = 1;

    const char *workingNow = "Bethany";

    const char *whatAmI = "A random guy in the attic";
    const char *whatILike = "Honey with Meat";
}

Pinned Loading

  1. Simple_Organizer Simple_Organizer Public

    Just one little thing to organize things

    C++ 1

  2. ZithLanguageSite ZithLanguageSite Public

    CSS 1

  3. Bethany Bethany Public

    C 2