Files
build/example/versioning/hello.cpp
T
Rene Rivera 50f853546c Experimental "version" feature type.
This adds a "version" type attribute to features that follow semver semantics. The implementation follows the semver rules for matching property sets and requirements, and for matching target alternatives. The implementation relies on the bfgroup/versioned library for the semver parsing and checking.
2026-06-25 12:17:11 -05:00

15 lines
297 B
C++

// Copyright (c) 2003 Vladimir Prus
//
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE.txt or copy at
// https://www.bfgroup.xyz/b2/LICENSE.txt)
// tag::source[]
#include <iostream>
int main()
{
std::cout << "Hello!\n";
}
// end::source[]