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

"use strict";

import { sendmsg } from 'So-o';

import 'Hello';

var hello = sendmsg(Hello, 'new');

sendmsg(hello, 'hello');

import 'Application';

var app = sendmsg(Application, 'new', 'Hello', hello);

console.log(sendmsg(app, 'appName'));

sendmsg(app, 'hello');

sendmsg(app, 'foobar');

sendmsg(app, 'set', 'app', null);
sendmsg(app, 'hello');
