# ProgramBinary

`import { ProgramBinary } from "destack:compute";`

Binary compute program source.

```ds title="ProgramBinary"
export struct ProgramBinary {
    kind: "binary";
    format: ProgramFormat;
    bytes: [uint8];
}
```

[language/library/src/compute/program.ds:47:56](https://github.com/destack-sh/destack/blob/main/language/library/src/compute/program.ds#L47-L56)

## Members

### `kind: "binary"`

The source variant.

### `format: ProgramFormat`

The source format.

### `bytes: [uint8]`

The source bytes.
