Skip to main content

Create a JaKtA Multi-Agent System

Create a new source file and start writing your JaKtA agents within the main function:

fun main() {
mas {
// your MAS definition goes in here
}.start()
}
Don't Forget

Don't forget to put .start() at the end! This instruction actually triggers the execution of the mas you define.

Run your Multi-Agent System

//TODO