Initial commit.

This commit is contained in:
rust-lang.xfoss.com
2023-03-27 14:33:48 +08:00
commit cf2b9a266c
266 changed files with 23587 additions and 0 deletions

8
never_type/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "never_type"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

7
never_type/src/main.rs Normal file
View File

@@ -0,0 +1,7 @@
fn main() {
print! ("永永 ");
loop {
print! ("远远 ");
}
}