Echo Writes Code

main.cpp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "crucible/boot/main.hpp"

#include "crucible/core/memory.hpp"
#include "crucible/core/string.hpp"

#include "crucible/test/shell.hpp"

namespace crucible::test_test
{
  auto launch(core::ImmutableView<core::String> const &arguments) -> boot::ExitStatus
  {
    return test::shell::launch("crucible-test", arguments);
  }
}

CRUCIBLE_MAIN(::crucible::test_test::launch)