Golang์๋ ํด๋์ค๊ฐ ์๋ ๋์ , ์๋์ ๊ฐ์ ๊ตฌ์กฐ์ฒด๊ฐ ์กด์ฌํ๋ค. ```go package main import "fmt" type work struct { mission string time int boss string salary int } func main() { programming := work{"์ก์ผ", 5, "๊น์ ๋", 100...
Read