libpy 0.2.1

This library imports functions from the python standard library.
Documentation

libpy

This library imports functions from the python standard library.

Examples

input! macro

use libpy::input;

fn main() {
    let a = input!();
    let b = input!("Enter your name: ");
    
    println!("{}", a);
    println!("{}", b);
}

int! macro

use libpy::int;

fn main() {
    let a = int!();
    let b = int!("42".to_string());

    println!("{}", a);
    println!("{}", b);
}

About

This project was created to make it easier for the programmer to work by importing functions familiar to him.