gopy/_examples/gostrings/strings.go

12 lines
249 B
Go

// Copyright 2017 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 gostrings
var S1 = "S1"
func GetString() string {
return "MyString"
}