Исходники и презентации
This commit is contained in:
8
lessons/strings/letter_order/main.go
Normal file
8
lessons/strings/letter_order/main.go
Normal file
@ -0,0 +1,8 @@
|
||||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func main() {
|
||||
fmt.Println('w' - 'a') // 119 - 97
|
||||
fmt.Println('o' - 'a') // 111 - 97
|
||||
}
|
||||
Reference in New Issue
Block a user