Skip to content

Instantly share code, notes, and snippets.

@aprolygin
aprolygin / tinybasic.c
Created January 10, 2026 22:42 — 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