blob: ef8a6eaaf6863887d09e17659627d34de3d08868 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (C) 2019 Robin Krahl <robin.krahl@ireas.org>
// SPDX-License-Identifier: MIT
#![warn(missing_docs, rust_2018_compatibility, rust_2018_idioms, unused)]
//! A command-line tool that synchronizes BibTeX bibliographies and local directories.
fn main() {
println!("Hello, world!");
}
|