Skip to content

Commit

Permalink
constants desc
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodesdev committed Jun 9, 2024
1 parent e0a3696 commit 82497ad
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions challenges/constants/description.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
In Rust, **constants** are values that are bound to a name and are **not allowed to change**. Constants are always immutable and are declared using the `const` keyword. They must be annotated with their type, and they can be set only to a constant expression.

In this challenge, you will define and use a constant in Rust. This will help you understand how to declare constants and how they can be utilized in your programs.

## Your task

- Define a constant named `MAX_SIZE` with a value of `100`.
- Ensure that `MAX_SIZE` has the type `i32`.
- Return the value of `MAX_SIZE` from the `main` function.

## Hints

- Use the `const` keyword to define the constant.
- Ensure you **specify the type** of the constant explicitly.

0 comments on commit 82497ad

Please sign in to comment.