--- my_basic/shell/main.c.orig 2022-08-23 13:03:27.427908586 -0700 +++ my_basic/shell/main.c 2022-08-23 13:04:47.865850436 -0700 @@ -980,6 +980,9 @@ _printf("MY-BASIC Interpreter Shell - %s\n", mb_ver_string()); _printf("Copyright (C) 2011 - 2022 Tony Wang. All Rights Reserved.\n"); _printf("For more information, see https://github.com/paladin-t/my_basic/.\n"); + _printf("\nIncludes bindings for the Linux Simple I/O Library\n"); + _printf("https://github.com/pmunts/libsimpleio\n"); + _printf("Copyright (C)2018-2025, Philip Munts dba Munts Technologies.\n\n"); _printf("Input HELP and hint enter to view the help information.\n"); } @@ -1595,6 +1598,10 @@ _on_startup(); + // Bindings for libsimpleio + extern void libsimpleio_init(struct mb_interpreter_t *bas); + libsimpleio_init(bas); + if(argc >= 2) { if(!_process_parameters(argc, argv)) argc = 1;