Update #4455, Regenerate all commands' docs (#4557)

This commit is contained in:
Justin Ma
2022-02-20 09:13:33 +08:00
committed by GitHub
parent aea4355d04
commit 2ecae0ef43
48 changed files with 481 additions and 52 deletions

28
docs/commands/print.md Normal file
View File

@ -0,0 +1,28 @@
---
title: print
layout: command
version: 0.59.0
---
Prints the values given
## Signature
```> print ...rest```
## Parameters
- `...rest`: the values to print
## Examples
Print 'hello world'
```shell
> print "hello world"
```
Print the sum of 2 and 3
```shell
> print (2 + 3)
```