Q:

Rust program to create a closure function with a parameter

0

In this program, we will create a closure function with a parameter to print the appropriate message.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to create a closure function with parameters is given below. The given program is compiled and executed on UBUNTU 18.04 successfully.

// Rust program to create a closure function 
// with parameter

fn main() {
    let name = "Herry";
    let my_closure = |na| println!("Hello {}", na);
    my_closure(name);
}

Output:

Hello Herry

Explanation:

Here, we created a string variable name initialized with "Herry". Then we created a closure function my_closure with parameter "na". In the closure, we printed a "Hello" message with a specified name.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now