#!/usr/bin/python
# -*- coding: utf-8 -*-
class Developer {
constructor() {
this.name = "Krzysiu";
this.role = "Fullstack Dev";
this.languages = ["en_UK", "pl_PL"];
}
hi() {
console.log(
`Hi, I'm ${this.name} — ${this.role}\nLanguages: ${this.languages.join(", ")}\nThanks for visiting!`
);
}
}
new Developer().hi();
Popular repositories Loading
-
PySnippets
PySnippets PublicSimple, beginner-friendly Python projects for learning the basics—variables, logic, small CLI apps, and more.
Python 1
-
-
DungeonMew
DungeonMew PublicForked from BasicallyIAmFox/DungeonMew
A Minecraft QoL mod made for a server.
Java
-
Grading-System
Grading-System PublicThis Python script command-line interface for managing students and their grades. Users can add students, input grades, and calculate average grades.
Python
-
Potato
Potato PublicForked from drtshock/Potato
If you fork this then you can say you forked a potato.
Java
If the problem persists, check the GitHub status page or contact support.