August 2021
Beginner
112 pages
1h 23m
English
| Puzzle 15 | A Tale of Two Cities |
| | package main |
| | |
| | import ( |
| | "fmt" |
| | ) |
| | |
| | func main() { |
| | city1, city2 := "Kraków", "Kraków" |
| | fmt.Println(city1 == city2) |
| | } |
Guess the Output | |
|---|---|
|
|
Try to guess what the output is before moving to the next page. Don’t try to copy and paste code from the PDF to your editor, it might or might not work. Use the files from the source repository to run the code. |
This code will print: false
Your eyesight is OK. These ...
Read now
Unlock full access