Hello,

Sure it is possible, even without hard string manipulations, which would be required in common languages to codegen. But PicoLisp is homoiconic so you are able to construct your program with plain list manipulations. Just how Lisp was intended to use from the start :)

Best regards, Nail

Sent from my BlackBerry — the most secure mobile device
From: bpsun...@gmail.com
Sent: 22 May 2019 10:23
To: picolisp@software-lab.de
Reply to: picolisp@software-lab.de
Subject: app builder from JSON

hello,
i have a question to pose to this group, lets assume that I have a JSON schema with TAB layout given by the end user,

{"tab1": 
"name": {"type": "string", "length": "25"},
"contact": {"type" : "number", "length": "10"}
},
{"tab2":
"address": {
"street_address" : {
"line1": {"type": "string", "length": "25"},
"line2": {"type": "string", "length": "25"}
},
"city" : {"type": "string", "length": "15"},
"zipcode" : {"type": "number", "length": "10"}
}

is it possible to build a automated picolisp application from this? including ui? instead of hard coding.

regards,
sundar.


Reply via email to