This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let rec reverse list = | |
match list with | |
|[] -> [] | |
|[x] -> [x] | |
| head::tail -> reverse tail @ [head] | |
let rec rev list acc= | |
match list with | |
| [] -> acc | |
| [x] -> x::acc |