Skip to content

Instantly share code, notes, and snippets.

@lpenz
Created December 1, 2020 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lpenz/7eab84f97da8dd2c0d5f83c1dc651644 to your computer and use it in GitHub Desktop.
Save lpenz/7eab84f97da8dd2c0d5f83c1dc651644 to your computer and use it in GitHub Desktop.
Rust executable template
// 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