From b276be12bce659c74ab6e6a1f2aff7d73a52db3e Mon Sep 17 00:00:00 2001 From: Alexander Zhirov Date: Sun, 4 Jan 2026 19:04:12 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D1=8C=20=D0=BF=D1=80?= =?UTF-8?q?=D0=B8=D0=BC=D0=B5=D1=80=D0=B0=20=D1=81=20=D0=B8=D0=BD=D0=B8?= =?UTF-8?q?=D1=86=D0=B8=D0=B0=D0=BB=D0=B8=D0=B7=D0=B0=D1=86=D0=B8=D0=B5?= =?UTF-8?q?=D0=B9=20=D1=81=D0=B5=D1=81=D1=81=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- example/source/app.d | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/example/source/app.d b/example/source/app.d index 2d7c805..113a4d1 100644 --- a/example/source/app.d +++ b/example/source/app.d @@ -4,5 +4,7 @@ import std.stdio : writeln; void main() { - writeln("test"); + auto config = SessionConfig(InputMode.raw, Cursor.normal, Echo.on); + auto session = new Session(config); + session.close(); }