blob: 0318ff0d7d43fabb1ea8e1ad8b342a97d1163909 [file] [log] [blame]
Marcel van Lohuizenf8132852019-04-26 12:16:18 +02001// Copyright 2018 The CUE Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package cli
16
17// Print sends text to the stdout of the current process.
18Print: {
Marcel van Lohuizen928bfa32019-04-26 12:16:18 +020019 kind: *"tool/cli.Print" | "print" // for backwards compatibility
Marcel van Lohuizenf8132852019-04-26 12:16:18 +020020
21 // text is the text to be printed.
22 text: string
23}
24
25// TODO:
26// Ask prompts the current console with a message and waits for input.
27//
28// Example:
29// task ask: cli.Ask({
30// prompt: "Are you okay?"
31// repsonse: bool
32// })
33// Ask: {
34// kind: "tool/cli.Ask"
35
36// // prompt sends this message to the output.
37// prompt: string
38
39// // response holds the user's response. If it is a boolean expression it
40// // will interpret the answer using textual yes/ no.
41// response: string | bool
42// }