ex1 04¶ ← Back Basic Info¶ Type: sml Size: 84 B Origin Download Functional Programming └── Lab ML └── 0307 └── ex1 04.sml Preview¶ (* Write a function to reverse a tuple of length 3 *) fun reverse(a,b,c) = (c,b,a);