package main type Room struct { reward bool doors string enemies bool } var ( introRoom = Room{ reward: true, doors: "1", enemies: false, } )