pub struct Language;
impl Language {
pub const CPP: &'static str = "cpp";
pub const C_SHARP: &'static str = "csharp";
pub const VB_NET: &'static str = "vbnet";
pub const DELPHI: &'static str = "delphi";
pub const JAVA: &'static str = "java";
pub const JAVASCRIPT: &'static str = "js";
pub const PYTHON: &'static str = "python";
pub const RUBY: &'static str = "ruby";
pub const AUTO_IT: &'static str = "autoit";
pub const POWERSHELL: &'static str = "powershell";
pub const HASKELL: &'static str = "haskell";
pub const MASM: &'static str = "masm";
pub const FASM: &'static str = "fasm";
pub const GO: &'static str = "go";
pub const RUST: &'static str = "rust";
pub const SWIFT: &'static str = "swift";
pub const KOTLIN: &'static str = "kotlin";
pub const LUA: &'static str = "lua";
pub const DART: &'static str = "dart";
pub const PHP: &'static str = "php";
pub const OBJC: &'static str = "objc";
pub const NASM: &'static str = "nasm";
}