summaryrefslogtreecommitdiff
path: root/apl9.h
diff options
context:
space:
mode:
authorPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-12 19:12:16 +0000
committerPeter Mikkelsen <petermikkelsen10@gmail.com>2022-01-12 19:12:16 +0000
commitfe3ef88c4147c4188066873e570f56212ffeebfd (patch)
treebe3a027f77f227f289cc86e4ad2098fd78acb27c /apl9.h
parent4f57c9aa1f319f093512d81c80ae6fe373e2bc4a (diff)
Don't print variables that have just been assigned. They are shy
Diffstat (limited to 'apl9.h')
-rw-r--r--apl9.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/apl9.h b/apl9.h
index f6c963c..30c5897 100644
--- a/apl9.h
+++ b/apl9.h
@@ -68,6 +68,7 @@ struct Function
struct Datum
{
datumTag tag;
+ int shy;
union {
Array *array;
Statement stmt;