Обновлен модуль примера с инициализацией сессии

This commit is contained in:
Alexander Zhirov 2026-01-04 19:04:12 +03:00
parent 03bd8c32fb
commit b276be12bc
Signed by: alexander
GPG key ID: C8D8BE544A27C511

View file

@ -4,5 +4,7 @@ import std.stdio : writeln;
void main() void main()
{ {
writeln("test"); auto config = SessionConfig(InputMode.raw, Cursor.normal, Echo.on);
auto session = new Session(config);
session.close();
} }