Files
hakorune/tests/development/test_p2p_phase1_simple.nyash

13 lines
360 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 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())