rustc_version_example/rustc_version_example.rs
1// SPDX-License-Identifier: 0BSD
2// rustc-version-const
3// Copyright (C) 2025 by LoRd_MuldeR <mulder2@gmx.de>
4
5use rustc_version_const::{rustc_version, rustc_version_full};
6
7const RUSTC_VERSION: &str = rustc_version();
8const RUSTC_VERSION_FULL: &str = rustc_version_full();
9
10fn main() {
11 println!("rustc version: \"{}\"", RUSTC_VERSION);
12 println!("rustc full version: \"{}\"", RUSTC_VERSION_FULL);
13}