[A Tour of Go] Exercise: Maps

newbieski·2023년 4월 10일
0

golang

목록 보기
7/13

https://go.dev/tour/moretypes/23

package main

import (
	"golang.org/x/tour/wc"
)

func WordCount(s string) map[string]int {
	return map[string]int{"x": 1}
}

func main() {
	wc.Test(WordCount)
}
profile
newbieski

0개의 댓글