> For the complete documentation index, see [llms.txt](https://adnanattar.gitbook.io/animal-script-language-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://adnanattar.gitbook.io/animal-script-language-guide/conditional-statement.md).

# Conditional Statement

Currently, we only support If Condition

**Conditional Statements: If Condition**

**Syntax:**

```
Tiger <condition>
```

**Explanation:** The `Tiger` conditional statement in Animal-Script is used to implement an if condition, allowing you to execute a block of code based on a specified condition. The syntax consists of two components:

1. `Tiger`: This keyword initiates the if condition statement.
2. `<condition>`: This is the condition that is evaluated. It can be any valid expression that results in a boolean value (`True` or `False`).

**Example:**

```
Tiger i < 10
```

In this example, the if condition will be evaluated to check if the variable `i` is less than 10. If the condition is `True`, the block of code following the `Tiger` statement will be executed. Otherwise, it will be skipped.
