diff interps/clc-intercal/CLC-INTERCAL-Base-1.-94.-2/INTERCAL/Backend/Run.pm @ 996:859f9b4339e6

<Gregor> tar xf egobot.tar.xz
author HackBot
date Sun, 09 Dec 2012 19:30:08 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/interps/clc-intercal/CLC-INTERCAL-Base-1.-94.-2/INTERCAL/Backend/Run.pm	Sun Dec 09 19:30:08 2012 +0000
@@ -0,0 +1,30 @@
+package Language::INTERCAL::Backend::Run;
+
+# Back end to run object in memory
+
+# This file is part of CLC-INTERCAL
+
+# Copyright (c) 2006-2008 Claudio Calvelli, all rights reserved.
+
+# CLC-INTERCAL is copyrighted software. However, permission to use, modify,
+# and distribute it is granted provided that the conditions set out in the
+# licence agreement are met. See files README and COPYING in the distribution.
+
+use strict;
+use vars qw($VERSION $PERVERSION);
+($VERSION) = ($PERVERSION = "CLC-INTERCAL/Base INTERCAL/Backend/Run.pm 1.-94.-2") =~ /\s(\S+)$/;
+
+use Carp;
+use Language::INTERCAL::Exporter '1.-94.-2';
+
+use constant default_suffix => undef; # means we don't want a file
+use constant default_mode   => undef; # means we don't want a file
+
+sub generate {
+    @_ == 2 or @_ == 3 or @_ == 4 or @_ == 5
+	or croak "Usage: BACKEND->generate(INTERPRETER)";
+    my ($class, $int, $name, $filehandle, $options) = @_;
+    $int->start()->run()->stop();
+}
+
+1;