Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
Suggestion
Browse files Browse the repository at this point in the history
Co-authored-by: Anton Trunov <[email protected]>
  • Loading branch information
novusnota and anton-trunov authored Mar 21, 2024
1 parent 00d2eae commit 4d33ab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/book/expressions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Read more about strings and [`String{:tact}`][p] type there: [Primitive types][p

### `null` literal

The `null{:tact}` value is written with a `null{:tact}` literal. It's **not** an [identifier](#identifiers) and doesn't refer to any object. It's also **not** a [primitive type][p]. Instead, `null{:tact}` represents a lack of identification and the intentional absence of any value.
The `null{:tact}` value is written with a `null{:tact}` literal. It's **not** an [identifier](#identifiers) and doesn't refer to any object. It's also **not** an instance of a [primitive type][p]. Instead, `null{:tact}` represents a lack of identification and the intentional absence of any value.

```tact
let var: Int? = null; // variable, which can hold null value
Expand Down

0 comments on commit 4d33ab3

Please sign in to comment.