connect TestPlugin; float add(float x, float y) { // プラグイン関数を、仕様に適切なシグネチャでラッピングする return ___add(x, y); } float a = add(1.2, 3.4); // ラッピングしたVCSSLの関数をコール print(a); // 結果を出力