It looks like all your examples are for SI. Can you help me get this going:
#include <mp-units/systems/si.h>
using namespace mp_units;
inline constexpr struct person final : named_unit<"p"> {} person;
int main( int argc,char const * const * argv ) {
auto classroom = 30 * person;
It looks like all your examples are for SI. Can you help me get this going: