diff --git a/00_Utilities/markdown_todo_rust/src/main.rs b/00_Utilities/markdown_todo_rust/src/main.rs index 827b45e0..f2f05fc4 100644 --- a/00_Utilities/markdown_todo_rust/src/main.rs +++ b/00_Utilities/markdown_todo_rust/src/main.rs @@ -12,11 +12,12 @@ use std::path::{Path, PathBuf}; //DATA const ROOT_DIR: &str = "../../"; -const LANGUAGES: [(&str,&str); 9] = [ //first element of tuple is the language name, second element is the file extension +const LANGUAGES: [(&str,&str); 10] = [ //first element of tuple is the language name, second element is the file extension ("csharp", "cs"), ("java", "java"), ("javascript", "html"), - ("pascal", "pas"), + ("kotlin", "kt"), + ("lua", "lua"), ("perl", "pl"), ("python", "py"), ("ruby", "rb"),