Revision history for Perl extension App::Scheme79asm.
+0.005001 2018-04-28T17:41+01:00
+ - Use Data::Dump::Sexp instead of a custom dump_sexp function
+ - Make the compiler output contain proper symbols instead of strings
+ - Improve the compiler documentation slightly
+
0.005 2018-03-24T18:30+02:00
- Compiler output can now be given to assembler
- Fix missing dependency
-App-Scheme79asm version 0.005
-=============================
+App-Scheme79asm version 0.005001
+================================
SIMPLE is a LISP processor defined in the 1979
B<Design of LISP-Based Processors> paper by Steele and Sussman.
use Data::SExpression qw/consp scalarp/;
use Scalar::Util qw/looks_like_number/;
-our $VERSION = '0.005';
+our $VERSION = '0.005001';
our %TYPES = (
LIST => 0,
use strict;
use warnings;
-our $VERSION = '0.005';
+our $VERSION = '0.005001';
use Carp qw/croak/;
use Data::Dumper qw/Dumper/;