Re: app builder from JSON

2019-05-22 Thread Abel Normand
 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, NailSent from my BlackBerry — the most secure mobile device   From: bpsun...@gmail.comSent: 22 May 2019 10:23To: picolisp@software-lab.deReply to: picolisp@software-lab.deSubject: 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.


app builder from JSON

2019-05-22 Thread sundar bp
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.