-
I'm most familiar with Chicken Scheme where I can put code in modules which ensures syntax issues get caught at compile time. Specifically how best to achieve that with Gambit/lambdanative and more generally how best to structure a complex app? Is there an example of a more complex app that illustrates good practices for lambdanative? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Structuring code with Modules is described on its Wiki page (like all the other documentation). I don't think it is possible to have any apps that don't include at least the config and ln_core, modules, as the former pulls in the gambit compiler library. Setting up apps with the scripts/lambdanative For a more complex app example look at the health app examples in the LNhealth repository, for example RRate or S5DataLogger. |
Beta Was this translation helpful? Give feedback.
Structuring code with Modules is described on its Wiki page (like all the other documentation). I don't think it is possible to have any apps that don't include at least the config and ln_core, modules, as the former pulls in the gambit compiler library. Setting up apps with the scripts/lambdanative
create <appname> <apptype>
process using examples using any of the templates illustrates this.For a more complex app example look at the health app examples in the LNhealth repository, for example RRate or S5DataLogger.