diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2026-01-11 15:21:11 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2026-01-11 15:21:11 -0500 |
| commit | bb4c931fc660eca5cc28f637873386bfb3a6b56b (patch) | |
| tree | 6d5c1caf73c63775913001ee71698272c1690225 /src/compile/text.c | |
| parent | 144b93491a76b969e531743f48a21897f9c5e8bc (diff) | |
Added/updated reals test
Diffstat (limited to 'src/compile/text.c')
| -rw-r--r-- | src/compile/text.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/compile/text.c b/src/compile/text.c index 7f11169b..1a9d492e 100644 --- a/src/compile/text.c +++ b/src/compile/text.c @@ -23,7 +23,8 @@ Text_t expr_as_text(Text_t expr, type_t *t, Text_t color) { case BigIntType: case IntType: case ByteType: - case FloatType: { + case FloatType: + case RealType: { Text_t name = type_to_text(t); return Texts(name, "$as_text(stack(", expr, "), ", color, ", &", name, "$info)"); } |
