Example: ```crystal class RouterExample < Crouter::Router @instance_var = "" post "/" do @instance_var # Compiler error: "can't use instance variables at the top level" end end ```