My Crossword Maker Logo
Powered by BrightSprout
Controls:
SPACEBAR SWITCHES TYPING DIRECTION
Answer Key:
Edit a Copy:
Make Your Own:
Crossword Word Search Worksheet
Rate This Puzzle:
Log in or sign up to rate this puzzle.

Working with GoLang June 2021

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Across
1
Every go program is made up of
6
Statement which causes a function to run when enclosing function terminates
9
Golang statement which is absent from modern languages and is considered “harmful”
10
The break statement can be given a ______ to enable break-ing out of multiple nested loops
11
What we use to allow a function to accepts parameters of any type (Two words, no space)
14
Predeclared identifier that represents successive untyped integer constants
15
Functions which are not named are called
16
An array-like object which can grow or shrink
17
Datatype which supports communication between goroutines
Down
2
Including a type as a nameless parameter within another type
3
Keyword which enables iteration over a variety of data structures
4
Builtin function which enables your code to regain control after a panic
5
Keyword used in switch statements which cause the code in the next block to be executed (Two words, no space)
7
Name for a function which takes any number of arguments
8
Statement which lets a goroutine wait on multiple channels
12
Looping keyword used in many other languages which is missing in Golang
13
Built-in function used to create maps, among other objects