vb6runtime 0.2.0

VB6 runtime library - value system, type conversions, and standard library implementations
Documentation
//! VB6 standard library implementations.
//!
//! Each VB6 runtime function/statement lives under its category submodule
//! (string, math, file, datetime, environment, ...) and is implemented
//! against the [`VBVariant`](crate::value::VBVariant) system. Modules are
//! added as they are implemented.

pub mod arrays;
pub mod constants;
pub mod conversion;
pub mod datetime;
pub mod environment;
pub mod file;
pub mod financial;
pub mod graphics;
pub mod interaction;
pub mod logic;
pub mod math;
pub mod objects;
pub mod resources;
pub mod string;
pub mod type_checking;