Skip to content

Instantly share code, notes, and snippets.

View DreamVB's full-sized avatar

Ben DreamVB

View GitHub Profile
@DreamVB
DreamVB / tinybasic.c
Created November 19, 2021 20:37 — forked from pmachapman/tinybasic.c
A tiny BASIC Interpreter
/* A tiny BASIC interpreter */
#include <string.h>
#include <stdio.h>
#include <setjmp.h>
#include <math.h>
#include <ctype.h>
#include <stdlib.h>
#define NUM_LAB 100