Created
December 1, 2020 18:37
-
-
Save lpenz/7eab84f97da8dd2c0d5f83c1dc651644 to your computer and use it in GitHub Desktop.
Rust executable template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright (C) 2020 Leandro Lisboa Penz <lpenz@lpenz.org> | |
// This file is subject to the terms and conditions defined in | |
// file 'LICENSE', which is part of this source code package. | |
use anyhow::Result; | |
fn main() -> Result<()> { | |
Ok(()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment