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
- Host: GitHub
- URL: https://github.com/mikewarot/fubas
- Owner: mikewarot
- Created: 2020-10-10T04:01:21.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-10T17:42:36.000Z (over 5 years ago)
- Last Synced: 2025-02-28T08:02:17.429Z (over 1 year ago)
- Topics: basic, c, compiler
- Language: C
- Homepage:
- Size: 31.3 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.