Skip to content
View bosungpark's full-sized avatar
🦫
🦫
  • Hankuk University of Foreign Studies
  • Seoul
  • 00:20 (UTC +09:00)

Block or report bosungpark

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
bosungpark/README.md
package main

import (
	"fmt"
)

type ProgrammingLanguage string

const (
	Python ProgrammingLanguage = "python"
	Golang ProgrammingLanguage = "golang"
)

type ParkBosung struct {
	ResidesIn           string
	Company             string
	Speaks              []string
	ProgrammingLanguage ProgrammingLanguage
}

func NewParkBosung() *ParkBosung {
	return &ParkBosung{
		ResidesIn:           "🇰🇷",
		Company:             "coxwave",
		Speaks:              []string{"ko", "en", "zh-cn"},
		ProgrammingLanguage: Golang,
	}
}

func (p *ParkBosung) SpeakMe() {
	fmt.Printf("hi, my name is %s!\n", "ParkBosung")
	fmt.Printf("my current interest is server development.\n")
}

func main() {
	bosungPark := NewParkBosung()
	bosungPark.SpeakMe()
}

Pinned Loading

  1. saa-markdown-document saa-markdown-document Public

    AWS Certified Solutions Architect - Associate study

    2

  2. jumble-markdown-document jumble-markdown-document Public

    논문, 아티클, Youtube 등 잡동사니 지식을 가볍게 정리한 것

  3. browsernetworking-markdown-document browsernetworking-markdown-document Public

    Summary of High Performance Browser Networing...Ilya Grigorik