Skip to content
View DanielKilgallon's full-sized avatar
Block or Report

Block or report DanielKilgallon

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

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

Report abuse
DanielKilgallon/README.md
fn main() {
  let danny = SoftwareDeveloper {
    pronouns: String::from("he/him"),
    username: String::from("DanielKilgallon"),
    email: String::from("danielkilgallon2@gmail.com"),
    languages: [
      String::from("Rust"),
      String::from("Java"),
      String::from("Javascript/Typescript"),
    ],
    goal: String::from("To contribute to open source!"),
  };
}

struct SoftwareDeveloper {
  pronouns:  String,
  username:  String,
  email:     String,
  languages:[String; 3],
  goal:      String,
}

Github stats

Pinned

  1. danielkilgallon.github.io danielkilgallon.github.io Public

    My website to showcase my favorite projects

    SCSS

  2. Tanks-N-Switches Tanks-N-Switches Public

    A 2D pixel-art game made in a week

    GDScript 3

  3. Random-Things Random-Things Public

    Forked from lumien231/Random-Things

    The Random Things Minecraft Mod

    Java