mirror of https://github.com/go-python/gopy.git
15 lines
308 B
Go
15 lines
308 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 named
|
||
|
|
||
|
type Float float32
|
||
|
|
||
|
func (f Float) Value() float32 { return float32(f) }
|
||
|
|
||
|
type X float32
|
||
|
type XX X
|
||
|
type XXX XX
|
||
|
type XXXX XXX
|