So I have my first closure here:
var instructions: (() -> Void) = { print("First") } instructions() /// prints "First"