quicktest 1.0.10

Quick Test CLI: A Cross-Platform for Automated Testing in Competitive Programming
/*
 *  Quick Test: CLI for stress testing in competitive programming
 *  Copyright (C) 2021-present Luis Miguel Báez
 *  License: MIT (See the LICENSE file in the repository root directory)
 */

pub mod c;
pub mod c_ce;
pub mod c_rte;
pub mod codes;
pub mod cpp;
pub mod cpp_ce;
pub mod cpp_mle;
pub mod cpp_rte;
pub mod python;
pub mod python_rte;
// python throws an RTE (MemoryError) when it exceeds memory
// pub mod python_mle;
pub mod go;
pub mod go_ce;
pub mod go_rte;
pub mod java;
pub mod java_ce;
pub mod java_rte;
// pub mod kotlin;
// pub mod kotlin_ce;
// pub mod kotlin_rte;
pub mod rust;
pub mod rust_ce;
pub mod rust_rte;