blob: fb3ab8fe54a7a1378a3a904054298364f3704bc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// file : tests/test/simple/generated/driver.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#include <iostream>
int
main ()
{
std::cout << "1.2.3" << std::endl;
}
|