Skip to content
View woongaaaa's full-sized avatar

Highlights

  • Pro

Organizations

@MEME-UMC @STEW-univ-partnership-viewer

Block or report woongaaaa

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
woongaaaa/README.md
import Foundation

struct MyProfile {
    let name: String
    let skills: [String]
    let projects: [String]
    let awards: [String]
    
    func introduce() {
        print("👋 안녕하세요! \(name)입니다.")
        print("\n🛠 Skills: \(skills.joined(separator: ", "))")
        print("\n📚 Projects:")
        projects.forEach { print("- \($0)") }
        print("\n🏆 Awards:")
        awards.forEach { print("- \($0)") }
    }
}

let myProfile = MyProfile(
    name: "황채웅",
    skills: ["Swift", "UIKit"],
    projects: [
        "메메(MEME): 나만의 메이크업 메이트",
        "스튜(STEW): 전국 대학교 제휴업체를 어디에서나!",
        "워크멍: 반려견 산책 매칭 앱 서비스"
    ],
    awards: [
        "2023년도 창의공학설계 전시회 은상",
        "UMC 5th DEMODAY ExtraPrize"
    ]
)

myProfile.introduce()

Pinned Loading

  1. MEME-UMC/MEME_iOS MEME-UMC/MEME_iOS Public

    MEME(메메) : 나만의 메이크업 메이트 ❤️

    Swift

  2. STEW-univ-partnership-viewer/FE-iOS STEW-univ-partnership-viewer/FE-iOS Public

    STEW 서비스 iOS 레포지토리입니다.

    Swift

  3. jullaene/walkmong_front jullaene/walkmong_front Public

    Swift

  4. Soongsil-Cookie-Time/CookieTime Soongsil-Cookie-Time/CookieTime Public

    숭실대학교 24-2 사용자인터페이스및실습 쿠키타임 안드로이드앱 입니다.

    Java 1