exprs.parsed 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. [
  2. Puts(
  3. Chc(
  4. [
  5. Choice {
  6. weight: None,
  7. value: Cat(
  8. [
  9. Lit(
  10. Atom(
  11. "This",
  12. ),
  13. ),
  14. Lit(
  15. Atom(
  16. "That",
  17. ),
  18. ),
  19. ],
  20. ),
  21. },
  22. ],
  23. ),
  24. ),
  25. Puts(
  26. Chc(
  27. [
  28. Choice {
  29. weight: None,
  30. value: Cat(
  31. [
  32. Lit(
  33. Atom(
  34. "This",
  35. ),
  36. ),
  37. ],
  38. ),
  39. },
  40. Choice {
  41. weight: None,
  42. value: Cat(
  43. [
  44. Lit(
  45. Atom(
  46. "That",
  47. ),
  48. ),
  49. ],
  50. ),
  51. },
  52. ],
  53. ),
  54. ),
  55. ]