#include <iostream>
#include <z/util/generic.hpp>
int main() {
#ifdef Z_GENERIC_EXISTS
#else
"ERROR: This program was compiled without support for z::util:generic!"_zs.
writeln(std::cout);
"To use generics, please compile with STD=c++17 or greater."_zs.writeln(std::cout);
#endif
}
void writeln(std::ostream &stream) const noexcept
Write string data to a stream in its format, appending a newline.
Definition string.hpp:1507
A class for simple storage and manipulation of data regardless of type.
Definition generic.hpp:30
zstring toString(bool printArrays=false) const noexcept
Safely convert to a string.
zstring typeString() const noexcept
Get a character string representing the current type.