// Generated by ReScript, PLEASE EDIT WITH CARE
'use strict';


var myList = {
  hd: 1,
  tl: {
    hd: 2,
    tl: {
      hd: 3,
      tl: /* [] */0
    }
  }
};

var anotherList = {
  hd: 0,
  tl: myList
};

exports.myList = myList;
exports.anotherList = anotherList;
/* No side effect */
Compiled successfully