xbasic64 1.0.0

A BASIC-to-x86_64 native code compiler targeting 1980s-era BASIC dialects
//! Integration tests for the BASIC compiler

// Copyright (c) 2025-2026 Jeff Garzik
// SPDX-License-Identifier: MIT

mod common;

mod arithmetic;
mod arrays;
mod control;
mod data;
mod file_io;
mod input;
mod math;
mod print;
mod procedures;
mod strings;
mod types;
mod variables;