| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# |
|
2
|
|
|
|
|
|
|
# This file is part of Language::Befunge. |
|
3
|
|
|
|
|
|
|
# Copyright (c) 2001-2009 Jerome Quelin, all rights reserved. |
|
4
|
|
|
|
|
|
|
# |
|
5
|
|
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify |
|
6
|
|
|
|
|
|
|
# it under the same terms as Perl itself. |
|
7
|
|
|
|
|
|
|
# |
|
8
|
|
|
|
|
|
|
# |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
package Language::Befunge; |
|
11
|
|
|
|
|
|
|
require 5.010; |
|
12
|
|
|
|
|
|
|
|
|
13
|
20
|
|
|
20
|
|
1475198
|
use strict; |
|
|
20
|
|
|
|
|
53
|
|
|
|
20
|
|
|
|
|
845
|
|
|
14
|
20
|
|
|
20
|
|
426
|
use warnings; |
|
|
20
|
|
|
|
|
39
|
|
|
|
20
|
|
|
|
|
642
|
|
|
15
|
|
|
|
|
|
|
|
|
16
|
20
|
|
|
20
|
|
19815
|
use Language::Befunge::Interpreter; |
|
|
20
|
|
|
|
|
80
|
|
|
|
20
|
|
|
|
|
329
|
|
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
# Public variables of the module. |
|
19
|
|
|
|
|
|
|
our $VERSION = '4.13'; |
|
20
|
|
|
|
|
|
|
$| = 1; |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
sub new { |
|
23
|
29
|
|
|
29
|
1
|
13922
|
shift; |
|
24
|
29
|
|
|
|
|
277
|
return Language::Befunge::Interpreter->new(@_); |
|
25
|
|
|
|
|
|
|
} |
|
26
|
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
1; |
|
28
|
|
|
|
|
|
|
__END__ |