https://futureofcoding.org/ logo
o

Oleksandr Kryvonos

05/16/2022, 9:37 PM
I am adding some basic types to my Lisperanto project [ https://uprun.github.io/lisperanto/ ], some one asked me recently how would I represent booleans, and now I have an answer: It is a record with type “boolean” and value either “true” or “false” in terms of JavaScript it is:
{ type: "boolean",
value: "true" }
❤️ 1