Add comments to code

This commit is contained in:
Lukas Prediger 2020-03-04 17:21:43 +01:00
parent 263d690933
commit 2568822d58
1 changed files with 3 additions and 0 deletions

View File

@ -35,10 +35,13 @@ we can also do directly calling the library.
Take this piece of code:
```java
// We initialize our bot in a separate method. See this as the initialization code from the getting started guide
AbsSender ourBot = getOurBot();
// We create the Method class. This one doesn't need any parameters to be able to be send
GetMe getMe = new GetMe();
// At last, we just need to execute the method and get the result
User bot = ourBot.execute(getMe);
```