Init rust project

This commit is contained in:
Sofia 2020-06-18 18:06:57 +03:00
parent 5c3bc9963f
commit 1b28558dd8
4 changed files with 23 additions and 3 deletions

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
/target
#Added by cargo
#
#already existing elements were commented out
#/target

9
Cargo.toml Normal file
View File

@ -0,0 +1,9 @@
[package]
name = "Reid"
version = "0.1.0"
authors = ["Teascade <teascade@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View File

@ -533,11 +533,11 @@ Functions like [`random() -> f32`](#random-f32), except it returns a more accura
#### `time_now64() -> i64`
Returns the current time in nanoseconds since January 1st 1970.
[teascade]: https://teasca.de
[omega_orig]: https://github.com/excitedneon/hero.neon.moe/blob/master/ts/omegaParser.ts
[teascade]: https://teascade.net
[omega_orig]: https://github.com/neonmoe/hero.neon.moe/blob/master/ts/omegaParser.ts
[overloading]: https://en.wikipedia.org/wiki/Function_overloading
[typescript]: https://www.typescriptlang.org/
[rust]: https://www.rust-lang.org/
[reid_logo]: https://teasca.de/external_img/reid_logo.png
[reid_logo]: https://teascade.net/external_img/reid_logo.png
[ccbysa]: http://creativecommons.org/licenses/by-sa/4.0/
[mit]: https://tldrlegal.com/license/mit-license

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}