vlc-rs/examples/print_version.rs

11 lines
246 B
Rust
Raw Normal View History

2015-11-29 08:30:19 +00:00
// This file is an example for vlc-rs, licensed under CC0.
// https://creativecommons.org/publicdomain/zero/1.0/deed
extern crate vlc;
fn main() {
println!("Version : {}", vlc::version());
println!("Compiler : {}", vlc::compiler());
}