diff options
| author | mryouse | 2023-05-25 01:59:59 +0000 |
|---|---|---|
| committer | mryouse | 2023-05-25 01:59:59 +0000 |
| commit | b2a3dc3b78dd6ce60b7c5e685fbbb40c84434691 (patch) | |
| tree | 5bd7d8f03f521f606ac9b490da74f14ccf7ae136 /dbg.d | |
| parent | cb64344f44cdbcd31f4d775bd1865b1af142bba3 (diff) | |
add nil value
Diffstat (limited to 'dbg.d')
| -rw-r--r-- | dbg.d | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -82,6 +82,8 @@ string printableValue(Value val) { return printableFunction(val.as.obj); case ValueType.TYPE: return val.as.type; + case ValueType.NIL: + return "nil"; default: return "! unknown value type !"; } |
