summaryrefslogtreecommitdiff
path: root/tests/indent/gleam/case.gleam
blob: 60238ce42c3ccca28dfc5851329140b8d6ac2172 (plain)
1
2
3
4
5
6
7
8
9
10
pub fn main() {
  case 1 {
    1 -> "One"
    2 -> {
      case 2 {
        2 -> "Two"
      }
    }
  }
}