blob: e4804574c3d0d13ccbfbba2bf411c249b7248411 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name: message
returns: void
description: This function prints its argument to stdout.
arg_flattening: false
posargs:
text:
type: str | int | bool | list[str | int | bool] | dict[str | int | bool]
description: The message to print.
varargs:
name: more_text
since: 0.54.0
type: str | int | bool | list[str | int | bool] | dict[str | int | bool]
description: Additional text that will be printed separated by spaces.
|