mirror of
https://github.com/boostorg/build.git
synced 2026-02-16 13:22:11 +00:00
18 lines
304 B
C++
18 lines
304 B
C++
/* (C) Copyright Rene Rivera, 2002.
|
|
**
|
|
** See accompanying license for terms and conditions of use.
|
|
*/
|
|
|
|
#include <cstdio>
|
|
|
|
#include "simple.h"
|
|
|
|
int main(int /* argc */, char ** /* argv */)
|
|
{
|
|
for (int i = 0; i < 16; ++i)
|
|
{
|
|
std::printf("%d * 2 = %d\n",i,lib_call(i));
|
|
}
|
|
return 0;
|
|
}
|