Skip to content

Commit 6c9d9c0

Browse files
committed
pushing big ints
1 parent 0b9bf61 commit 6c9d9c0

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/library/libstd.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -771,6 +771,9 @@ int ric_push(LIBRARY_PARAMS()) {
771771
case DOUBLETYPE:
772772
entry = newExpr_Float(stv.d);
773773
break;
774+
case BIGINT:
775+
entry = newExpr_BigInt(stv.bigInt);
776+
break;
774777
case TEXT:
775778
entry = newExpr_Text(stv.t);
776779
break;

0 commit comments

Comments
 (0)