mirror of
https://github.com/Andreabont/CppExperiments.git
synced 2025-07-12 02:25:07 +00:00
14 lines
214 B
C++
14 lines
214 B
C++
#include <iostream>
|
|
#include <sstream>
|
|
#include <chrono>
|
|
|
|
#include "RangeIterator.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
for(int i : Range(10)) {
|
|
std::cout << i << std::endl;
|
|
}
|
|
|
|
return 0;
|
|
}
|