ex1 10¶ ← Back Basic Info¶ Type: sml Size: 127 B Origin Download Functional Programming └── Lab ML └── 0307 └── ex1 10.sml Preview¶ (*Given a list, remove the second element. It doesn’t need to work on lists shorter than 2*) fun rem l = hd(l) :: tl(tl(l));