# set-dozens command

The set-dozens command designates that
a numeric expression of 1 is equal to 12 units.

## Syntax

```
set-dozens {(options}
```

## Parameter(s)

| options | u | Sets system default. |
| --- | --- | --- |

## Example(s)

```
set-dozens
```
Dozens conversion set.

```
u bp test
01 print oconv(36,’u01b6’);* Unit input-conversion user exit
02 print oconv(5,’u11b6’);* Unit output-conversion user exit
```
This output displays:

```
3
60
```
since 3 dozen = 36, and 5 dozen = 60.

## See also

- [set-decimal command](https://d3codex.com/tcl/set-decimal-command/)
- [u11b6 user exit](https://d3codex.com/pickbasic-flashbasic/u11b6-user-exit/)
- [set-thousands command](https://d3codex.com/tcl/set-thousands-command/)
- [u21b6 user exit](https://d3codex.com/pickbasic-flashbasic/u21b6-user-exit/)
- [set-units command](https://d3codex.com/tcl/set-units-command/)
- [um command](https://d3codex.com/tcl/um-command/)
- [u01b6 user exit](https://d3codex.com/pickbasic-flashbasic/u01b6-user-exit/)

---
Source: https://d3codex.com/tcl/set-dozens-command/ - part of the D3Codex reference.
