/**
 *
 * @copyright  2019 so-o.org
 * @version    1
 * @link       http://www.so-o.org
 */

"use strict";

import { sendmsg } from 'So-o';

import 'X';

console.log(sendmsg(X, 'count'));

let x1 = sendmsg(X, 'new');

console.log(sendmsg(x1, 'get', 'value'));

let x2 = sendmsg(X, 'new', 1);

console.log(sendmsg(x2, 'get', 'value'));

console.log(sendmsg(X, 'count'));

sendmsg(x1, 'free');

x1 = undefined;

console.log(sendmsg(X, 'count'));
