From 1d494e999a492e126a59a17323bd2c2fe2027810 Mon Sep 17 00:00:00 2001 From: AnthonyMichaelTDM <68485672+AnthonyMichaelTDM@users.noreply.github.com> Date: Sat, 19 Mar 2022 11:28:03 -0700 Subject: [PATCH] update the included languages --- 00_Utilities/markdown_todo_rust/src/main.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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"),