headers.cc 482 B

1234567891011121314151617181920
  1. // -*- mode: c++; coding: utf-8 -*-
  2. // ra-ra/test - ra::iota not std::iota.
  3. // (c) Daniel Llorens - 2013-2023
  4. // This library is free software; you can redistribute it and/or modify it under
  5. // the terms of the GNU Lesser General Public License as published by the Free
  6. // Software Foundation; either version 3 of the License, or (at your option) any
  7. // later version.
  8. #include "ra/ra.hh"
  9. #include <random>
  10. auto I = ra::iota(998, 1);
  11. auto I1 = I+1;
  12. int main()
  13. {
  14. return 0;
  15. }