public class Main { public static void main(String[] args) { Brain b1 = new Brain(); b1.logicChobit.addSkill(new DiHelloWorld()); b1.hardwareChobit.addSkill(new DiSysOut()); // this skill prints output b1.doIt("hello","",""); } }
# This is a sample Python script. from LivinGrimoireCoreV2 import * from AXPython import *
# Press Shift+F10 to execute it or replace it with your code. # Press Double Shift to search everywhere for classes, files, tool windows, actions, and settings. # Press the green button in the gutter to run the script. if __name__ == '__main__': b1: Brain = Brain() b1.logicChobit.addSkill(DiHelloWorld()) b1.hardwareChobit.addSkill(DiSysOut()) b1.doIt("hello", "", "")