mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
11 lines
97 B
Go
11 lines
97 B
Go
package main
|
|
|
|
const a = 1.0
|
|
|
|
const b = a + 3
|
|
|
|
func main() { println(b << (1)) }
|
|
|
|
// Output:
|
|
// 8
|