You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Theodosius/examples/demo/main.cpp

9 lines
172 B

#include "module.h"
#include <iostream>
inline double g_version = 1.0;
int main()
{
std::printf( "> g_version = %f, get_version = %f\n", g_version, get_version() );
}