You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
MSilva95 2f86fd1efe exercises for rust piscine 4 years ago
..
README.md exercises for rust piscine 4 years ago

README.md

stars

Instructions

Write a function named stars that takes a number as parameter and returns a string of stars (asterisks) 2^n long (2 to the nth power).

Expected functions

fn stars(n: u32) -> String {}

Usage

Here is a program to test your function.

fn main() {
    println!("{}", stars(1));
    println!("{}", stars(4));
    println!("{}", stars(5));
}

And its output

student@ubuntu:~/[[ROOT]]/test$ cargo run
**
****************
********************************
student@ubuntu:~/[[ROOT]]/test$