nuttx-apps/interpreters
liuhaitao 5a29e86847 Fix bas_program.c build warning under macos
bas_program.c:234:35: error: adding 'size_t' (aka 'unsigned long') to a string does not append to the string [-Werror,-Wstring-plus-int]
      FS_putChars(chn, "        " + len);
                       ~~~~~~~~~~~^~~~~
bas_program.c:234:35: note: use array indexing to silence this warning
      FS_putChars(chn, "        " + len);
                                  ^
                       &          [    ]
1 error generated.

Signed-off-by: liuhaitao <liuhaitao@xiaomi.com>
2020-04-17 17:06:01 +08:00
..
bas Fix bas_program.c build warning under macos 2020-04-17 17:06:01 +08:00
ficl Revert "Don't generate .depend anymore" 2020-03-22 23:09:40 -05:00
minibasic Revert "Don't generate .depend anymore" 2020-03-22 23:09:40 -05:00
.gitignore Remove extra whitespace from files (#43) 2020-01-31 08:29:24 -06:00
Make.defs Make.defs: Use complete include path 2020-02-19 12:56:10 -06:00
Makefile Rearrange to eliminate Kmenu files 2016-06-09 08:59:16 -06:00
README.txt Remove extra whitespace from files (#43) 2020-01-31 08:29:24 -06:00

apps/interpreters README file
=============================

This apps/ directory is set aside to hold interpreters that may be
incorporated into NuttX.

ficl
----

  This is DIY port of Ficl (the "Forth Inspired Command Language").  See
  http://ficl.sourceforge.net/.  It is a "DIY" port because the Ficl source
  is not in that directory, only an environment and instructions that will
  let you build Ficl under NuttX.  The rest is up to you.

minibasic
---------

  The Mini Basic implementation at apps/interpreters derives from version 1.0
  by Malcolm McLean, Leeds University, and was released under the Creative
  Commons Attibution license.  I am not legal expert, but this license
  appears to be compatible with the NuttX BSD license see:
  https://creativecommons.org/licenses/ .  I, however, cannot take
  responsibility for any actions that you might take based on my
  understanding.  Please use your own legal judgement.