Echo Writes Code

main.cpp

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

#include "crucible/test/shell.hpp"

namespace crucible::boot::main
{
  auto launch(core::arrays::ImmutableSlice<std::string> const arguments) -> ExitStatus
  {
    return crucible::test::shell::launch("crucible-test", arguments);
  }
}