Skip to content
View Samet195's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report Samet195

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Rust-FullStack-WebApp Rust-FullStack-WebApp Public

    Rust Cross-Platform WebAssembly Application

    Rust

  2. Project-Template-Manager Project-Template-Manager Public

    CLI Manager for Project Templates

    Rust

  3. Rust-FFI-Template Rust-FFI-Template Public template

    Rust FFI Template Project

    Rust

  4. Single-Page-Application Single-Page-Application Public

    My "Single-Page Application" Project.

    HTML

  5. Python's `input()` fn Implementation... Python's `input()` fn Implementation in Rust
    1
    use std::fmt::Display;
    2
    use std::io::{stdin, stdout, Write};
    3
    
                  
    4
    pub fn input(prompt: impl Display) -> Box<str> {
    5
        let mut buffer = String::new();
  6. Java like OOP Programming in Rust Java like OOP Programming in Rust
    1
    use std::fmt::Display;
    2
    use std::io::{stdin, stdout, Write};
    3
    
                  
    4
    struct Library;
    5
    impl Library {