ex1 03¶ ← Back Basic Info¶ Type: sml Size: 123 B Origin Download Functional Programming └── Lab ML └── 0307 └── ex1 03.sml Preview¶ (*Find the third element of a list (it doesn’t have to work properly on shorter lists)*) fun third (l) = hd (tl(tl(l)));