13 lines
360 B
Plaintext
13 lines
360 B
Plaintext
|
|
// Phase 1: IntentBox基本テスト(簡単版)
|
|||
|
|
local intent
|
|||
|
|
intent = new IntentBox("test", "Hello")
|
|||
|
|
|
|||
|
|
local console
|
|||
|
|
console = new ConsoleBox()
|
|||
|
|
console.log("Intent name: " + intent.name)
|
|||
|
|
console.log("Intent payload: " + intent.payload)
|
|||
|
|
|
|||
|
|
// P2PBox作成テスト
|
|||
|
|
local node
|
|||
|
|
node = new P2PBox("test_node", "inprocess")
|
|||
|
|
console.log("Node ID: " + node.nodeId())
|