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.
|
#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() );
|
|
} |