mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-25 13:16:29 +08:00
update the code style
This commit is contained in:
parent
6941a2b34f
commit
9395674e16
1 changed files with 3 additions and 3 deletions
|
@ -92,9 +92,9 @@ comments: true
|
||||||
|
|
||||||
```typescript title=""
|
```typescript title=""
|
||||||
/* 使用多种「基本数据类型」来初始化「数组」 */
|
/* 使用多种「基本数据类型」来初始化「数组」 */
|
||||||
const numbers: number[] = []
|
const numbers: number[] = [];
|
||||||
const characters: string[] = []
|
const characters: string[] = [];
|
||||||
const booleans: boolean[] = []
|
const booleans: boolean[] = [];
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "C"
|
=== "C"
|
||||||
|
|
Loading…
Reference in a new issue