use warnings;
use strict;

use IPC::Shareable;

IPC::Shareable->spawn(
    key     => 'bbbb',

    create => 1
);

sleep 1;
exit 0;
