Sort by

recency

|

2132 Discussions

|

  • + 0 comments

    For you to past the tests, the "Hello, World" should end with a fullstop like this "Hello, World."

  • + 0 comments

    Just use a scanner to read stream then print boath hello word and the line.

  • + 0 comments

    print("hello! world"

  • + 1 comment

    How do you solve this challenge? When I submit my code, it remains "unsolved" but it gave me full credit under the submissions tab.

  • + 0 comments

    Rust

    fn main() {
        println!("Hello, World.");
        let mut input_string = String::new();
        std::io::stdin().read_line(&mut input_string);
        println!("{input_string}");
    }