Skip to content

ex1 04

← Back

Basic Info

Functional Programming
└── Lab ML
    └── 0​307
        └── ex1 04.sml

Preview

(*Write a function to reverse a tuple of length 3*)

fun reverse(a,b,c) = (c,b,a);