Dallycot

A linked open code engine

View project on GitHub

CLI Library

The functions in this library provide simple command-line input/output functionality.

Functions

input

(prompt: String = “”) → Any

Prompts for input from the user and interprets it as Dallycot. This function returns the result of executing the input.

Implementation

This is implemented internally.

input-string

(prompt: String = “”) → String

Prompts for input from the user. This function returns the string entered by the user.

Implementation

This is implemented internally.

print

(value: Any) → true

Prints the value to the current output device. If the value is not a string, then it will be converted to a string representation.

Implementation

This is implemented internally.