print command can't print variable's data

Issue #3 invalid
mezzodrinker created an issue

The print command can't print the value of a variable.

> value = "foo"; print value;
null
> print "foo";
foo
> value = "foo"; print #value;
null

Comments (4)

  1. Log in to comment