π Python
class Alan:
def __init__(self):
self.name = "Alan Wang"
self.age = "High School Student π"
self.location = China.Shanghai()
self.languages = ["PHP", "Python", "Java", "C++"]
self.interests = ["Web Development", "Hackintosh", "Open Source"]
self.goal = "Building cool things, one commit at a time π"
def say_hi(self):
print("Thanks for dropping by! Feel free to explore my repos π")
me = Alan()
me.say_hi()π PHP
<?php
class Alan {
public string $name = "Alan Wang";
public string $age = "High School Student π";
public string $location = "China.Shanghai";
public array $languages = ["PHP", "Python", "Java", "C++"];
public array $interests = ["Web Development", "Hackintosh", "Open Source"];
public string $goal = "Building cool things, one commit at a time π";
public function sayHi(): void {
echo "Thanks for dropping by! Feel free to explore my repos π\n";
}
}
$me = new Alan();
$me->sayHi();
?>β Java
public class Alan {
String name = "Alan Wang";
String age = "High School Student π";
String location = "China.Shanghai";
String[] languages = {"PHP", "Python", "Java", "C++"};
String[] interests = {"Web Development", "Hackintosh", "Open Source"};
String goal = "Building cool things, one commit at a time π";
public void sayHi() {
System.out.println("Thanks for dropping by! Feel free to explore my repos π");
}
public static void main(String[] args) {
Alan me = new Alan();
me.sayHi();
}
}βοΈ C++
#include <iostream>
#include <string>
#include <vector>
class Alan {
public:
std::string name = "Alan Wang";
std::string age = "High School Student π";
std::string location = "China.Shanghai";
std::vector<std::string> languages = {"PHP", "Python", "Java", "C++"};
std::vector<std::string> interests = {"Web Development", "Hackintosh", "Open Source"};
std::string goal = "Building cool things, one commit at a time π";
void sayHi() {
std::cout << "Thanks for dropping by! Feel free to explore my repos π" << std::endl;
}
};
int main() {
Alan me;
me.sayHi();
return 0;
}- π Advanced Python (algorithms, automation)
- π Web frameworks (Laravel / Django)
- π€ Vibe Coding
- βοΈ C++ (algorithms)



