Hide boilerplate code using `///`
mainWhen presenting code, you may want to hide verbose boilerplate (like package declarations or main functions) while still allowing the code to be executable.
By prefixing lines with ///, those lines are hidden from the visual display in the slides but remain part of the code when executed via ctrl+e. Additionally, if you use the y key to yank (copy) the block, the full snippet including the /// lines will be returned.
///package main
///
import "fmt"
///
///func main() {
fmt.Println("Hello, world!")
///}