find solution on proposition addition and output actions run
[scpubgit/DX.git] / bin / dx
CommitLineData
9eedd677 1use strictures 2;
2use Module::Runtime qw(use_module);
fa8f5696 3use DX::Utils qw(:builders);
9eedd677 4
5use_module('DX::ShellFrontend')->new(
6 session_mode => 'shell',
7 session => use_module('DX::ShellSession')->new(
8 shell_state => use_module('DX::ShellState')->new(
9 mode => 'shell',
fa8f5696 10 template_query_state => use_module('DX::QueryState')->new(
11 predicates => {
12 'eq' => use_module('DX::Predicate::Eq')->new,
13 member_at => use_module('DX::Predicate::MemberAt')->new,
14 is_dict => use_module('DX::Predicate::IsDict')->new,
15 },
16 globals => dict(),
17 proposition_sequence
18 => use_module('DX::PropositionSequence')->new_empty,
19 ),
9eedd677 20 )
21 ),
22)->repl