1 2 3 4 5 6 7 8 9 10 11 12
use crate::{CommandArgs, Compiler, Language}; pub const PYTHON: Language = Language { compiler: Compiler { main_file: "main.py", args: None, }, runner_args: CommandArgs { binary: "python", args: &["main.py"], }, };