Echo Writes Code

main.cpp

1
2
3
4
5
6
7
8
9
10
11
12
#include "crucible/boot/main.hpp"
#include "crucible/core/arrays.hpp"
#include "crucible/core/strings.hpp"
#include "crucible/test/shell.hpp"

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