1 // Copyright (c) 2018 Oxford Nanopore Technologies 2 // 3 // Distributed under the Boost Software License, Version 1.0. (See accompanying 4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 5 6 #include <iostream> 7 main(int argc,char * argv[])8int main(int argc, char *argv[]) 9 { 10 for (int i = 0; i < argc; ++i) { 11 std::cout << argv[i] << '\n'; 12 } 13 return argc; 14 } 15