High school student at Redmond High School coding games and other things in my free time! I like to code in Java
, but I also use game engines like Gamemaker 2
, Godot
, Unreal Engine 5
or Unity
. You can reach me throught my Instagram DM's!
import java.util.HashMap;
import java.util.Map;
public class Kirei {
/**
* Returns the data collected about @kireiiiiiiii
*
*/
private static Map<String, String> getData() {
Map<String, String> aboutMe = new HashMap<>();
aboutMe.put("Name", "Matěj Šťastný");
aboutMe.put("Pronouns", "He/Him");
aboutMe.put("Age", "17");
aboutMe.put("Nationality", "Czech 🇨🇿");
aboutMe.put("City", "Seattle 🇺🇸");
aboutMe.put("OS", "MacOS");
aboutMe.put("Languages", "Java, Bash, GDS, GMS");
aboutMe.put("Tools", "VS Code, Alacritty, Godot, GM2");
aboutMe.put("Art", "Aseprite, Blender");
return aboutMe;
}
/**
* Main
*/
public static void main(String[] args) {
Map<String, String> aboutMe = getData();
for (Map.Entry<String, String> entry : aboutMe.entrySet()) {
System.out.println(entry.getKey() + ": " + entry.getValue());
}
System.out.println(":3");
}
}