> For the complete documentation index, see [llms.txt](https://radiantblockchain.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://radiantblockchain.gitbook.io/wiki/programming/radiantscript/language/contract-structure.md).

# Contract Structure

Contracts in CashScript are somewhat similar to classes in object-oriented languages. A notable difference is that there is no mutable state. So once a contract is instantiated with certain parameters, these values cannot change. Instead, functions can be called on the contract that act on the contract's values to spend money from the contract. The extension of CashScript source code files is `.cash`, and the structure of these source files is explained below.

## Pragma <a href="#pragma" id="pragma"></a>

A contract file may start with a pragma directive to indicate the CashScript version the contract was written for. This ensures that a contract is not compiled with an unsupported compiler version, which could cause unintended side effects.

{% hint style="info" %}
**Note:** The pragma directive follows regular [semantic versioning rules](https://semver.npmjs.com/).
{% endhint %}

#### **Example**

```solidity
pragma cashscript ^0.7.0;
pragma cashscript >= 0.4.0 < 0.5.4;
```

## Constructor <a href="#constructor" id="constructor"></a>

A CashScript constructor works slightly differently than what you might be used to in regular object-oriented languages. It is not possible to define any statements inside the constructor, as the constructor is only used to store values in the contract. Because of this limited nature, there is no separate `constructor` function, but instead the parameters are specified directly on the class definition.

#### **Example**

```solidity
pragma cashscript ^0.7.0;

contract HTLC(pubkey sender, pubkey recipient, int expiration, bytes32 hash) {
    ...
}
```

## Functions <a href="#functions" id="functions"></a>

The main construct in a CashScript contract is the function. A contract can contain one or multiple functions that can be executed to trigger transactions that spend money from the contract. In the basics the result of a function is just a yes or no answer to the question 'Can money be sent out of this contract?'. But by using a technique called covenants, it is possible to specify other conditions, like restricting *where* money can be sent. To read more about this technique, refer to the [CashScript Covenants Guide](/wiki/programming/radiantscript/guides/writing-covenants-and-introspection.md).

#### **Example**

```solidity
pragma cashscript ^0.7.0;

contract TransferWithTimeout(pubkey sender, pubkey recipient, int timeout) {
    function transfer(sig recipientSig) {
        ...
    }

    function timeout(sig senderSig) {
        ...
    }
}
```

## Statements <a href="#statements" id="statements"></a>

CashScript functions are made up of a collection of statements that determine whether money may be spent from the contract.

### require() <a href="#require" id="require"></a>

The most important statement of CashScript contracts is the `require` statement. This statement takes a boolean expression and checks that it evaluates to `true`. If it evaluates to `false` instead, the transaction fails. This statement is used to ensure that the requirements are met to spend money from the contract.

#### **Example**

```solidity
pragma cashscript ^0.7.0;

contract P2PKH(bytes20 pkh) {
    function spend(pubkey pk, sig s) {
        require(hash160(pk) == pkh);
        require(checkSig(s, pk));
    }
}
```

## Variable declaration <a href="#variable-declaration" id="variable-declaration"></a>

Variables can be declared by specifying their type and name. All variables need to be initialised at the time of their declaration, but can be reassigned later on - unless specifying the `constant` keyword. Since CashScript is strongly typed and has no type inference, it is not possible to use keywords such as `var` or `let` to declare variables.

{% hint style="info" %}
**Caution:** CashScript disallows variable shadowing and unused variables.
{% endhint %}

#### **Example**

```solidity
int myNumber = 3000;
string constant myString = 'Bitcoin Cash';
```

## Variable assignment <a href="#variable-assignment" id="variable-assignment"></a>

After their initial declaration, any variable can be reassigned later on. However, CashScript lacks any compound assignment operators such as `+=` or `-=`.

#### **Example**

```solidity
i = i + 1;
hashedValue = sha256(hashedValue);
myString = 'Cash';
```

## Control structures <a href="#control-structures" id="control-structures"></a>

The only control structures in CashScript are `if` and `else` statements. This is due to limitations in the underlying Bitcoin Script which prevent loops, recursion, and `return` statements. If-else statements follow usual semantics known from languages like C or JavaScript.

{% hint style="info" %}
**Note:** There is no implicit type conversion from non-boolean to boolean types. So `if (1) { ... }` is not valid CashScript and should instead be written as `if (bool(1)) { ... }`&#x20;
{% endhint %}

#### **Example**

```solidity
pragma cashscript ^0.7.0;

contract OneOfTwo(bytes20 pkh1, bytes32 hash1, bytes20 pkh2, bytes32 hash2) {
    function spend(pubkey pk, sig s, bytes message) {
        require(checkSig(s, pk));
        bytes20 pkh = hash160(pk);

        if (pkh == pkh1) {
            require(sha256(message) == hash1);
        } else if (pkh == pkh2) {
            require(sha256(message) == hash2);
        } else {
            require(false); // fail
        }
    }
}
```

## Comments <a href="#comments" id="comments"></a>

Comments can be added anywhere in the contract file. Comment semantics are similar to languages like JavaScript or C. This means that single-line comments can be added with `// ...`, while multiline comments can be added with `/* ... */`.

#### **Example**

```solidity
// This is a single-line comment.

/*
This is a
multi-line comment.
*/
```
