Echo Writes Code

main.cpp

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

#include "crucible/core/memory.hpp"
#include "crucible/core/strings.hpp"
#include "crucible/test/shell.hpp"

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