irgendwie muma mol anfange ...

This commit is contained in:
Daniel Heule
2025-10-19 14:34:42 +02:00
commit f513d71acb
5 changed files with 28 additions and 0 deletions

3
.gitattributes vendored Normal file
View File

@@ -0,0 +1,3 @@
* text=auto eol=lf
*.{cmd,[cC][mM][dD]} text eol=crlf
*.{bat,[bB][aA][tT]} text eol=crlf

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/target

7
Cargo.lock generated Normal file
View File

@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "rsnmpagent"
version = "0.1.0"

6
Cargo.toml Normal file
View File

@@ -0,0 +1,6 @@
[package]
name = "rsnmpagent"
version = "0.1.0"
edition = "2024"
[dependencies]

11
src/main.rs Normal file
View File

@@ -0,0 +1,11 @@
use std::io;
fn main() {
println!("Hello, world!");
let mut guess = String::new();
io::stdin()
.read_line(&mut guess)
.expect("Failed to read line");
}