* test: remove limit. * test: skip btln.go * test: adds tests on errors. * feat: add missing output results. * refactor: time's tests.
15 lines
151 B
Go
15 lines
151 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
var a, b, c uint16
|
|
a = 64
|
|
b = 64
|
|
c = a * b
|
|
fmt.Printf("c: %v %T", c, c)
|
|
}
|
|
|
|
// Output:
|
|
// c: 4096 uint16
|