Menu
Coddy logo textTech

Recap - True or False

Part of the Fundamentals section of Coddy's Rust journey — lesson 32 of 75.

challenge icon

Challenge

Beginner

Write a program that gets an input from the user.

The program will output T if the input equals to 1 and F otherwise.

Compare the input as a string — do not parse it as an integer.

Try it yourself

use std::io;

fn main() {
    // Write your code below

}

All lessons in Fundamentals