Crates.io | libpy |
lib.rs | libpy |
version | 0.2.1 |
source | src |
created_at | 2022-10-30 11:06:26.218638 |
updated_at | 2022-10-30 15:39:49.128836 |
description | This library imports functions from the python standard library. |
homepage | https://github.com/Hy-u-3a4eM/libpy |
repository | https://github.com/Hy-u-3a4eM/libpy |
max_upload_size | |
id | 701427 |
size | 16,119 |
This library imports functions from the python standard library.
use libpy::input;
fn main() {
let a = input!();
let b = input!("Enter your name: ");
println!("{}", a);
println!("{}", b);
}
use libpy::int;
fn main() {
let a = int!();
let b = int!("42".to_string());
println!("{}", a);
println!("{}", b);
}
This project was created to make it easier for the programmer to work by importing functions familiar to him.