duckscriptsdk 0.11.1

The duckscript SDK.
Documentation
```sh
result = writefile file text
```

This command enables to write the provided text into the requested file.<br>
It will return true/false value based if it was able to write the text to the file.

### Parameters

* The target file
* The text content to write

### Return Value

true/false based if it was able to write the text to the file.

### Examples

```sh
result = writefile ./target/tests/writefile.txt "line 1\nline 2"
```