// // Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // range_test.cfa -- // // Author : Thierry Delisle // Created On : Thu Dec 02 17:13:24 2021 // Last Modified By : // Last Modified On : // Update Count : // #include #include int main() { { RangeIter r = { "0-6" }; while(moveNext(r)) { sout | r.com | nonl; } sout | nl; } }