Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paladin-t/my_basic
A lightweight BASIC interpreter written in standard C in dual files. Aims to be embeddable, extendable and portable.
https://github.com/paladin-t/my_basic
basic interpreter programming-language scripting-language
Last synced: 15 days ago
JSON representation
A lightweight BASIC interpreter written in standard C in dual files. Aims to be embeddable, extendable and portable.
- Host: GitHub
- URL: https://github.com/paladin-t/my_basic
- Owner: paladin-t
- License: mit
- Created: 2014-02-16T09:24:50.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-05-01T03:26:48.000Z (7 months ago)
- Last Synced: 2024-05-20T23:28:27.100Z (6 months ago)
- Topics: basic, interpreter, programming-language, scripting-language
- Language: C
- Homepage: http://paladin-t.github.io/my_basic/
- Size: 35.7 MB
- Stars: 490
- Watchers: 52
- Forks: 116
- Open Issues: 28
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY
- License: LICENSE
Awesome Lists containing this project
- AwesomeInterpreter - my_basic
README
~~~~~~~~~~
_____ __ __ _____ _____ _____ _____ _____
| | | |___| __ | _ | __| | |
| | | |_ _|___| __ -| |__ |- -| --|
|_|_|_| |_| |_____|__|__|_____|_____|_____|
~~~~~~~~~~**Copyright (C) 2011 - 2024 Tony Wang**
[![Build status](https://github.com/paladin-t/my_basic/actions/workflows/c.yml/badge.svg)](https://github.com/paladin-t/my_basic/actions/workflows/c.yml)
[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg)](http://opensource.org/licenses/MIT)[Web playground](https://my-basic.github.io/playground/output/index.html)
## Contents
* [Introduction](#introduction)
* [Main features](#main-features)
* [BASIC at a glance](#basic-at-a-glance)
* [Installation](#installation)
* [Interpreter workflow diagram](#interpreter-workflow-diagram)
* [Wiki](#wiki)
* [Donate](#donate)## Introduction
MY-BASIC is a lightweight BASIC interpreter written in standard C in dual files. It aims to be embeddable, extendable and portable. It is a dynamic typed programming language, reserves structured syntax, supports a style of [prototype-based programming](https://en.wikipedia.org/wiki/Prototype-based_programming) (OOP), also implements a functional paradigm by [lambda abstraction](https://en.wikipedia.org/wiki/Anonymous_function). The core is written in a C source file and an associated header file. It's easy to either use it as a standalone interpreter or embed it with existing projects in C, C++, Java, Objective-C, Swift, C#, etc. and totally customizable by adding your own scripting interface.
## Main features
MY-BASIC offers a wide range of features including:
* Written in standard C, source code is portable to a dozen of platforms
* Lightweight (within less than 128KB footprint), fast, and configurable
* With both retro and modern BASIC syntax
* Case-insensitive tokenization, and many other indelible BASIC flavour
* [Unicode support](https://github.com/paladin-t/my_basic/wiki/Using-Unicode)
* [Prototype-based programming](https://en.wikipedia.org/wiki/Prototype-based_programming), with reflection support
* [Lambda abstraction](https://en.wikipedia.org/wiki/Anonymous_function) enhanced functional programming
* Customizable referenced/non-referenced usertype
* Collection construction and manipulation functions for `LIST` and `DICT`
* Automatic releasing for referenced values (prototype, lambda, referenced usertype, list, dictionary, etc.) benefited from reference counting and garbage collection
* Common numeric and string functions
* Structured sub routine definition with the `DEF/ENDDEF` statements
* Structured `IF/THEN/ELSEIF/ELSE/ENDIF`
* Structured `FOR/TO/STEP/NEXT`, `FOR/IN/NEXT`, `WHILE/WEND`, `DO/UNTIL`
* Reserved retro `GOTO`, `GOSUB/RETURN`
* Importing multiple source files with the `IMPORT` statement
* Debug API
* Customizable memory pool
* Easy API, for extending new BASIC functions
* Easy interacting BASIC facilities at native side, and vice versa
* More features under development[![BASIC8](https://github.com/paladin-t/my_basic/wiki/img/basic8_banner.png)](https://paladin-t.github.io/b8/)
Get [BASIC8](https://paladin-t.github.io/b8/) - the **Fantasy Computer** powered by MY-BASIC - on [Steam](http://store.steampowered.com/app/767240/) for game and other program development in an integrated environment.
See awesome [user creations](https://my-basic.github.io/awesome/).
## BASIC at a glance
A "Hello World" convention in MY-BASIC:
~~~~~~~~~~bas
input "What is your name: ", n$def greeting(a, b)
return a + " " + b + " by " + n$ + "."
enddefprint greeting("Hello", "world");
~~~~~~~~~~Read the [MY-BASIC Quick Reference](https://paladin-t.github.io/my_basic/MY-BASIC%20Quick%20Reference.pdf) to get details about how to program in MY-BASIC.
## Installation
### Using standalone interpreter binary
This repository contains precompiled binaries for [Windows](output/my_basic.exe), [macOS](output/my_basic_mac) and [Linux](output/my_basic_linux), the easiest way is to download to get a direct playground. Or you can make a build by:
* Using the Visual Studio solution `my_basic.sln` for Windows build
* Using the Xcode workspace `my_basic_mac.xcodeproj` for macOS build
* Using the `makefile` for Linux buildFollow these steps to compile an interpreter binary manually for other platform:
1. Retrieve everything under the [`core`](core) and [`shell`](shell) folders for a minimum setup
2. Setup your toolchain for compiling and linking
3. Compile [`core/my_basic.c`](core/my_basic.c) and [`shell/main.c`](shell/main.c), while both includes [`core/my_basic.h`](core/my_basic.h); then link up an executableThe standalone interpreter supports three running modes:
* Execute the binary without arguments to use the interactive mode
* Type "HELP" and hint Enter to see usages
* Pass a file to the binary to load and run that BASIC source code
* Pass an argument `-e` followed with an expression to evaluate and print instantly as a simple calculator, eg. `-e "22 / 7"`### Combining with existing projects
Just copy [`core/my_basic.c`](core/my_basic.c) and [`core/my_basic.h`](core/my_basic.h) to your project and add them to the build pipeline. You can [link with MY-BASIC as a lib](https://github.com/paladin-t/my_basic/wiki/Linking-with-MY_BASIC) as well.
For details about using MY-BASIC after integration, see [MY-BASIC Quick Reference](https://paladin-t.github.io/my_basic/MY-BASIC%20Quick%20Reference.pdf) and read the [Wiki](#wiki) pages.
## [Interpreter workflow diagram](https://github.com/paladin-t/my_basic/wiki/Interpreter-workflow-diagram)
MY-BASIC's workflow diagram can be concluded in a single image.
![](https://github.com/paladin-t/my_basic/wiki/img/workflow.png)
A simple setup:
~~~~~~~~~~c
#include "my_basic.h"int main() {
struct mb_interpreter_t* bas = NULL;mb_init();
mb_open(&bas);
mb_load_string(bas, "print 22 / 7;", true);
mb_run(bas, true);
mb_close(&bas);
mb_dispose();return 0;
}
~~~~~~~~~~## [Wiki](https://github.com/paladin-t/my_basic/wiki)
The manual explains most of the fundamental topics, however it doesn't cover everything; read the [Wiki](https://github.com/paladin-t/my_basic/wiki) for supplements, like machinism behind MY-BASIC, efficient practice, etc:
* Principles
* [Passes](https://github.com/paladin-t/my_basic/wiki/Passes)
* [Interpreter workflow diagram](https://github.com/paladin-t/my_basic/wiki/Interpreter-workflow-diagram)
* [How lambda works](https://github.com/paladin-t/my_basic/wiki/How-lambda-works)
* Coding
* [Using Unicode](https://github.com/paladin-t/my_basic/wiki/Using-Unicode)
* [Importing another file](https://github.com/paladin-t/my_basic/wiki/Importing-another-file)
* [Module (namespace)](https://github.com/paladin-t/my_basic/wiki/Module-(namespace))
* [Sub routine](https://github.com/paladin-t/my_basic/wiki/Sub-routine)
* [Lambda abstraction](https://github.com/paladin-t/my_basic/wiki/Lambda-abstraction)
* [Structured exception handling](https://github.com/paladin-t/my_basic/wiki/Structured-exception-handling)
* [Multiple condition](https://github.com/paladin-t/my_basic/wiki/Multiple-condition)
* Data types
* [Collection manipulation](https://github.com/paladin-t/my_basic/wiki/Collection-manipulation)
* [Manipulating an array](https://github.com/paladin-t/my_basic/wiki/Manipulating-an-array)
* [Automatic memory management](https://github.com/paladin-t/my_basic/wiki/Automatic-memory-management)
* [Using usertype values](https://github.com/paladin-t/my_basic/wiki/Using-usertype-values)
* [Using prototype-based class](https://github.com/paladin-t/my_basic/wiki/Using-prototype-based-class)
* [Defining a class in C](https://github.com/paladin-t/my_basic/wiki/Defining-a-class-in-C)
* [Meta methods](https://github.com/paladin-t/my_basic/wiki/Meta-methods)
* [Overriding operators](https://github.com/paladin-t/my_basic/wiki/Overriding-operators)
* [Overriding functions](https://github.com/paladin-t/my_basic/wiki/Overriding-functions)
* [Using iterators](https://github.com/paladin-t/my_basic/wiki/Using-iterators)
* Standalone shell
* [Extra functions](https://github.com/paladin-t/my_basic/wiki/Extra-functions)
* Integration
* [Linking with MY-BASIC](https://github.com/paladin-t/my_basic/wiki/Linking-with-MY_BASIC)
* [Writing a debugger](https://github.com/paladin-t/my_basic/wiki/Writing-a-debugger)
* [Callback](https://github.com/paladin-t/my_basic/wiki/Callback)
* [Interop with C#](https://github.com/paladin-t/my_basic/wiki/Interop-with-C%23)
* Customization
* [Customizing macros](https://github.com/paladin-t/my_basic/wiki/Customizing-macros)
* [Customizing a memory allocator](https://github.com/paladin-t/my_basic/wiki/Customizing-a-memory-allocator)
* [Redirecting PRINT and INPUT](https://github.com/paladin-t/my_basic/wiki/Redirecting-PRINT-and-INPUT)
* [Redefining int_t and real_t](https://github.com/paladin-t/my_basic/wiki/Redefining-int_t-and-real_t)
* [Converting between string and real](https://github.com/paladin-t/my_basic/wiki/Converting-between-string-and-real)
* [Customizing an importer](https://github.com/paladin-t/my_basic/wiki/Customizing-an-importer)
* More scripting API
* [String matching module](https://github.com/paladin-t/my_basic/wiki/String-matching-module)
* [String manipulation module](https://github.com/paladin-t/my_basic/wiki/String-manipulation-module)
* [File module](https://github.com/paladin-t/my_basic/wiki/File-module)
* [Inline data sequence module](https://github.com/paladin-t/my_basic/wiki/Inline-data-sequence-module)
* [Bit operation module](https://github.com/paladin-t/my_basic/wiki/Bit-operation-module)
* [Miscellaneous module](https://github.com/paladin-t/my_basic/wiki/Miscellaneous-module)
* [Stack module](https://github.com/paladin-t/my_basic/wiki/Stack-module)
* [FAQ](https://github.com/paladin-t/my_basic/wiki/FAQ)
* [Is it possible to introduce another feature](https://github.com/paladin-t/my_basic/wiki/Is-it-possible-to-introduce-another-feature)## Donate
[List of donors](http://paladin-t.github.io/my_basic/donate.html).
Consider supporting MY-BASIC development with a donation if you like this project.
One-off [donation](http://paladin-t.github.io/my_basic/donate.html) via PayPal.