code-executor 2.7.0

A library designed for the backend of competitive programming platforms
Documentation
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"],
    },
};