mirror of https://github.com/go-python/gopy.git
18 lines
314 B
Go
18 lines
314 B
Go
// Copyright 2015 The go-python Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package maps
|
|
|
|
|
|
func MapsFunc(t map[string]int) {
|
|
|
|
}
|
|
|
|
func MapsFunc2() map[int]string {
|
|
return map[int]string{
|
|
1 : "hello",
|
|
2 : "world",
|
|
}
|
|
}
|