fn fmt()

in crates/testbed/src/lang.rs [19:25]


    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Self::Python => write!(f, "python"),
            Self::Rust => write!(f, "rust"),
            Self::Typescript => write!(f, "typescript"),
        }
    }