mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-23 04:19:27 +01:00
Plugins/Plang: use output_value to print values
This commit is contained in:
parent
1a2655c22d
commit
61dde5e9f5
@ -63,7 +63,7 @@ sub cmd_plang {
|
||||
my $result = $self->run($context->{arguments});
|
||||
|
||||
# check to see if we need to append final result to output
|
||||
$self->{output} .= $result->[1] if defined $result->[1];
|
||||
$self->{output} .= $self->{plang}->{interpreter}->output_value($result) if defined $result->[1];
|
||||
|
||||
# return the output
|
||||
return length $self->{output} ? $self->{output} : "No output.";
|
||||
@ -94,7 +94,7 @@ sub run {
|
||||
my $program = $ast->[0];
|
||||
my $statements = $program->[1];
|
||||
|
||||
my $result; # result of the final statement
|
||||
my $result; # result of the final statement
|
||||
|
||||
eval {
|
||||
# interpret the statements
|
||||
|
Loading…
Reference in New Issue
Block a user