I am adding some basic types to my Lisperanto proj...
# share-your-work
o
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