dechdev_rs 0.1.45

A Rust library by DECHDEV.
Documentation
1
2
3
4
5
6
7
8
9
use crate::utils::path_file;

pub fn example_path_file() {
    let current_path = path_file::current_path();
    let executable_path = path_file::executable_path();

    println!("Current Path: {}", current_path);
    println!("Execute Path: {}", executable_path);
}