ex1 12¶ ← Back Basic Info¶ Type: sml Size: 107 B Origin Download Functional Programming └── Lab ML └── 0314 └── ex1 12.sml Preview¶ (*Write a function to test if a list is empty*) fun emptyList(nil) = true | emptyList(_) = false ;