Skip to content

コンソール出力

Kasuga Chiyo edited this page Feb 8, 2019 · 14 revisions

数値出力

#include <iostream>
#include <cstdint>
#include <array>
#include "DTL.hpp"

int main() {

	using dungeon_t = bool;
	std::array<std::array<dungeon_t, 10>, 8> matrix{ {} };

	dtl::console::output::stl::number(matrix);

	return 0;
}

出力例

0000000000
0000000000
0000000000
0000000000
0000000000
0000000000
0000000000
0000000000
Clone this wiki locally