An open API service indexing awesome lists of open source software.

https://github.com/mikewarot/fubas

FUBAS - FUnctional BASic interpeter/compiler
https://github.com/mikewarot/fubas

basic c compiler

Last synced: 23 days ago
JSON representation

FUBAS - FUnctional BASic interpeter/compiler

Awesome Lists containing this project

README

          

## FUBAS - FUnctional BASic - Functional Programming meets BASIC

Copyright (C) 2020 Michael A. Warot

This is what happens when a crazy person tries to make a "functional" programming language out of Tiny BASIC

This is an audacious jump into the abyss. I've never done functional
programming, and only had it recently summarized in this youtube video by
Uncle Bob Martin -- --> https://www.youtube.com/watch?v=P2yr-3F6PQo

So the terms I use are likely to be wrong... sorry about that.

My understanding is there shouldn't be variables, and if they
to exist, they should be identities. The reason is multi-core
processors are the norm now, and it's only going to get worse
for anything single-threaded in the future.

So, in FUBAS, there are no variables, only identites,
which have versions. I'll be winging it as I go.

## LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.