This commit is contained in:
Isuru Samarathunga
2025-07-18 22:37:47 +05:30
parent f2e6cee915
commit a324de4111
10 changed files with 428 additions and 234 deletions

View File

@ -1,7 +1,21 @@
#include <stdio.h>
#include <iacore/log.hpp>
#include <iacore/file.hpp>
#include <iacore/vector.hpp>
using namespace ia;
VOID print(IN CONST Span<int>& s)
{
for(const auto& v: s)
Logger::Info(v);
}
int main(int argc, char* argv[])
{
Vector<int> v1{10, 20, 32};
print(v1);
return 0;
}