Добавлен модуль использования Variant

This commit is contained in:
Alexander Zhirov 2025-05-18 13:42:08 +03:00
parent 16c77dc28d
commit 516b80c0d0
5 changed files with 57 additions and 1 deletions

View file

@ -12,6 +12,7 @@ int main(string[] args)
"Проверяет наличие исполняемого файла в директориях,указанных в переменной окружения PATH"))
.add(new Command("splittext",
"Форматирует массив строк, разбивая их на строки указанной длины"))
.add(new Command("variant", "Динамическая работа с разными типами данных в одной переменной"))
)
.add(new Command("ncurses", "Использование библиотеки ncurses")
.add(new Command("menu", "Интерактивное консольное меню"))
@ -27,6 +28,7 @@ int main(string[] args)
argumets
.on("common", (common) { common
.on("variant", (variant) { fVariant(); })
.on("splittext", (splittext) { formatLines(); })
.on("isexists", (isexists) { isExists(); });
})