Commit 69bb4232 authored by Him188's avatar Him188 Committed by GitHub

Update guide_getting_started.md

parent abc2c83d
...@@ -53,7 +53,7 @@ JDK要求6以上 ...@@ -53,7 +53,7 @@ JDK要求6以上
} }
``` ```
- 添加依赖,将dependencies部分覆盖 `mirai-core` 的最新版本为: [![Download](https://api.bintray.com/packages/him188moe/mirai/mirai-core/images/download.svg)](https://bintray.com/him188moe/mirai/mirai-core/) - 添加依赖,将dependencies部分覆盖 `mirai-core` 的最新版本为: [![Download](https://api.bintray.com/packages/him188moe/mirai/mirai-core/images/download.svg)](https://bintray.com/him188moe/mirai/mirai-core/)
```groovy ```groovy
dependencies { dependencies {
...@@ -84,7 +84,7 @@ import net.mamoe.mirai.event.subscribeMessages ...@@ -84,7 +84,7 @@ import net.mamoe.mirai.event.subscribeMessages
suspend fun main() { suspend fun main() {
val qqId = 10000L//Bot的QQ号,需为Long类型,在结尾处添加大写L val qqId = 10000L//Bot的QQ号,需为Long类型,在结尾处添加大写L
val password = "your_password"//Bot的密码 val password = "your_password"//Bot的密码
val miraiBot = Bot(qqId, password).alsoLogin()//新建Bot并登 val miraiBot = Bot(qqId, password).alsoLogin()//新建Bot并登
miraiBot.subscribeMessages { miraiBot.subscribeMessages {
"你好" reply "你好!" "你好" reply "你好!"
case("at me") { case("at me") {
...@@ -95,7 +95,7 @@ suspend fun main() { ...@@ -95,7 +95,7 @@ suspend fun main() {
"刘老板太强了".reply() "刘老板太强了".reply()
} }
} }
miraiBot.join() miraiBot.join() // 等待 Bot 离线, 避免主线程退出
} }
``` ```
...@@ -110,7 +110,6 @@ suspend fun main() { ...@@ -110,7 +110,6 @@ suspend fun main() {
### 此外,还可以使用Maven作为包管理工具 ### 此外,还可以使用Maven作为包管理工具
本项目推荐使用gradle,因此不提供详细入门指导 本项目推荐使用gradle,因此不提供详细入门指导
Kotlin 在 Maven 上只支持 JVM 平台.
```xml ```xml
<repositories> <repositories>
<repository> <repository>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment