The main.converse file contains the main chatbot scenario
@Event('start')start() {>HelloWorld}
start() is a function. Here, it corresponds to a dialogue.
We use a decorator @Event() to indicate how we trigger the function. The name of the event is start. Thus, the function will only be triggered once: the first time the user interacts with the chatbot.
Starting the line with > sends a response to the user. Here is Hello World