Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package main
- import "log"
- func main() {
- langs := [4]string{
- "Go",
- "Python",
- "Ruby",
- "PHP",
- }
- if !(langs[0] == "Go") {
- log.Fatal("Wrong string")
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement