summaryrefslogtreecommitdiff
path: root/go/variable-names.go
blob: ba6d0ea6510e9ec59d4e9379ece5f56146dcf9f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package main

import (
	"fmt"
)

func main () {
	const е int = 0;
	const e int = 1;
	fmt.Println("cyrillic: %d", е);
	fmt.Println("latin: %d", e);
}