spo/ass3/zbirnik/parsing/test.go
2026-01-01 16:30:16 +01:00

14 lines
167 B
Go

package main
import (
"fmt"
)
func main() {
i := "tes,"
if i[len(i)-1] == ',' {
fmt.Println("hi")
} else {
fmt.Println("world")
}
}