2 个版本
0.1.1 | 2019 年 1 月 2 日 |
---|---|
0.1.0 | 2019 年 1 月 2 日 |
11 在 #first-line
32 每月下载量
11KB
305 行
简介
Easy Adds 是一个提供简单 Rust 语言的 crate,适合初学者和学校。虽然 Rust 对初学者来说不是一门容易的语言,但使用这个 crate,他们可以轻松地做一些酷炫的事情。
要使用这个库,请在你的代码的第一行写入以下内容
extern crate easy_adds;
use easy_adds::*;
一些有用的函数
// Generate a random number between 0 and 1
random_f64()
// NOTE: You can also use random_f32 which return a f32 number instead of a f64 number
// You can also generate a number between two numbers with:
random(-5,5)
// This function returns a i32 between the first and the second number (NOTE: The first number is included but not the second)
// Get an input form the user of the given type ex: input_i64("Type a number: ")
input_<Type>("Mesage to sended to the user")
// Here all the types supported: f32,f64,bool,i8,i16,i32,i64,u8,u16,u32,u64,string
// Note to make a string input: input("Mesage to sended to the user")
// You can also use the try_ statement to get an Option<Type> like:
try_input_<Type>("Mesage to sended to the user")
// This return an option of the given type an this is avaible for all types of the input expect String
依赖项
~560–780KB
~10K SLoC