fib-example #42

Merged
JakeHillion merged 2 commits from fib-example into main 2022-05-20 19:24:45 +01:00
3 changed files with 14 additions and 1 deletions
Showing only changes of commit 258ccc09b0 - Show all commits

1
examples/fib/main.rs Normal file
View File

@ -0,0 +1 @@
fn main() {}

View File

@ -0,0 +1,12 @@
{
"entrypoints": {
"main1": {
"args": [
"BinaryName"
],
"environment": [
"Stdout"
]
}
}
}

View File

@ -98,7 +98,7 @@ fn main() {
}; };
match run(&args) { match run(&args) {
Ok(_) => exitcode::OK, Ok(code) => code,
Err(e) => { Err(e) => {
error!("error: {}", e); error!("error: {}", e);
-1 -1