Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Latest commit

 

History

History
27 lines (22 loc) · 603 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 603 Bytes

random.value

random.value allows you to generate random data of a specified length within your EKG code.

Importing

To import random.value, add the following to your EKG file:

get random.value

Usage

To use random.value, add the line:

random.value length

Replace length with the desired length of the random data you want to generate.

Example

Here is an example of how to generate random data:

get random.value
get say

say Here's a random string: 
say + random.value 10

In this example, a random string of 10 characters will be generated and printed out.