아주 멋집니다
04.07.2023 23:18 — 👍 1 🔁 0 💬 0 📌 0@80rian.bsky.social
DE
아주 멋집니다
04.07.2023 23:18 — 👍 1 🔁 0 💬 0 📌 0아 프사 개무서워요 ㅋㅋㅋ
03.07.2023 12:57 — 👍 1 🔁 0 💬 1 📌 0🥳🥳🥳
27.05.2023 14:57 — 👍 1 🔁 0 💬 0 📌 0쩔죠?
27.05.2023 06:36 — 👍 1 🔁 0 💬 1 📌 0하이요
27.05.2023 00:01 — 👍 1 🔁 0 💬 0 📌 0알고보니 저 12개 있음. 어디서 확인하는지 몰랐던 것 뿐이었음..
26.05.2023 23:52 — 👍 0 🔁 0 💬 1 📌 0초대코드 도대체 어케 생기는거에요
26.05.2023 00:15 — 👍 0 🔁 0 💬 1 📌 0유니 하이
28.04.2023 09:11 — 👍 1 🔁 0 💬 0 📌 0package main
import "fmt"
type Profile struct {
Name string
Position string
}
func main() {
p := Profile{
Name: "Adrian",
Position: "Data Engineer",
}
fmt.Printf("Hello, this is %s, the %s", p.Name, p.Position)
}