Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- type node =
- {
- mutable next: node option;
- value: int;
- }
- ;;
- let nodeA = {next = None; value = 1};;
- let nodeB = {next = nodeA; value = 2};;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement