#!/usr/bin/perl -w

use warnings;
use strict;

use JSON::Shell;

my $sh = JSON::Shell->new(
    HISTFILE => ".jsonshell_history",
    RCFILES => [ ".jsonshellrc" ],
);

$sh->run;

