en

Wing

ちょっとマイペースな大阪の高校生,Wing.ウェブ開発,写真などが趣味.

// src/assets/profile.ts

class Engineer {
  name: string;
  role: string;
  skills: string[];
  hobbies: string[];

  constructor(name: string, role: string, skills: string[], hobbies: string[]) {
    this.name = name;
    this.role = role;
    this.skills = skills;
    this.hobbies = hobbies;
  }

  introduce(): void {
    console.log(`Hello! This is ${this.name}.`);
    console.log(`I'm usually ${this.role}`);
    console.log(`I can use the following stacks: ${this.skills.join(', ')}`);
    console.log(`My hobby is: ${this.hobbies.join(', ')}`);
  }
}

// express myself
const me = new Engineer(
  'Wing',
  'student',
  ['TypeScript', 'Svelte', 'SvelteKit', 'Vue', 'Nuxt', 'Astro'],
  ['Web Development', 'Photography', 'Cat', 'Trip']
);

me.introduce();

/* I haven't written such a complex code ever! */

できること・趣味

ウェブ開発

ウェブ開発してます.このページも自作.

プログラミング

ウェブ開発以外の言語にも興味あり.(まだまだ勉強中です)

写真

ギャラリーがあります.下のカードをタップしてご覧ください.

Gallery by Wing

Wingのフォトギャラリー

gallery.wing.osaka