phlpsong - Overview

// 🌐 Cross-Platform Architect
struct Dev {
    let name = "Phillip Song"
    
    // 🔥 Core Stack
    var techStack = [
        "📱 SwiftUI", 
        "🤖 Jetpack Compose", 
        "✨ React Native", 
        "🦕 TypeScript"
    ]
    
    // ⚙️ Daily Drivers
    var toolbelt = (
        ide: "⌘ Xcode & VS Code", 
        vcs: "🌿 Git Flow", 
        ci: "🚦 GitHub Actions"
    )
    
    // 🚀 Current Focus
    var activeProject: (platform: Platform, features: [Feature]) {
        (.all, [.animations, .nativeModules, .perfOptimization])
    }
}

enum Platform: String {
    case iOS, android, all = "cross-platform"
}

enum Feature {
    case animations, nativeModules, perfOptimization
}

// 🎯 Instantiate & Create
let me = Dev()
print("Crafting \(me.activeProject.platform.rawValue) experiences with \(me.techStack.joined(separator: " | "))")