Rust Taskbook Level 8.1
Given a text file, get the number of characters in it.
Ask the user to enter text via the console. Write the entered text to a file.
You are given a text file with words. Write a program that will wrap each word in parentheses. Write the result to a new file.
You are given a text file with words and fractions of the form 1/2
. Write a program that will wrap each fraction in parentheses. Write the result to a new file.
Write a program that will generate the following array:
[
[
[1, 2, 3],
[1, 2, 3],
[1, 2, 3],
],
[
[1, 2, 3],
[1, 2, 3],
[1, 2, 3],
],
[
[1, 2, 3],
[1, 2, 3],
[1, 2, 3],
],
}