refresh struct

This commit is contained in:
chatlanin
2024-07-05 10:26:32 +03:00
parent e22967accb
commit 40da1bbaa9
68 changed files with 17 additions and 56 deletions

16
examples/memory/main.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include <array>
#include "hack/logger/logger.hpp"
#include "hack/memory/make_ptr.hpp"
auto main(int argc, char *argv[]) -> int
{
auto a = hack::memory::make_unique<int>(5);
hack::log()(*a);
auto arr = hack::memory::make_unique<int[]>(5);
arr[0] = 1;
hack::log()(arr[0]);
}