mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
13 lines
207 B
C++
13 lines
207 B
C++
#include <Core/Core.h>
|
|
|
|
#include <ProductVersion/ProductVersion.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
ProductVersion v(1, 2, 3);
|
|
ProductVersion v2 = v;
|
|
v2.IncDevel();
|
|
DUMP(v < v2);
|
|
}
|