aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2026-01-11 15:21:11 -0500
committerBruce Hill <bruce@bruce-hill.com>2026-01-11 15:21:11 -0500
commitbb4c931fc660eca5cc28f637873386bfb3a6b56b (patch)
tree6d5c1caf73c63775913001ee71698272c1690225 /src
parent144b93491a76b969e531743f48a21897f9c5e8bc (diff)
Added/updated reals test
Diffstat (limited to 'src')
-rw-r--r--src/compile/text.c3
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)");
}