> ## Documentation Index
> Fetch the complete documentation index at: https://docs.arc.cdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# arc:include

> Includes ArcScript from another file inline, replacing the keyword with the full contents of the specified file at parse time.

export const siteNameShort = "Arc";

Use the `arc:include` keyword to include {siteNameShort}Script from other files. Like traditional includes in other programming languages, `arc:include` is replaced by the contents of the file specified in the **file** parameter.

## Parameters

* **file | document**: The name of the file to include.
* **language**: The language the file is written in.

## Control Attributes

None

## Example

Import `companyname` and `copyright` attributes in each script without duplication:

```xml theme={null}
<arc:include file="globals.rsb"/> 
[companyname] 
[copyright] 
<arc:call ...>
```
