xo-interpreter: + xo::scm::Float

This commit is contained in:
Roland Conybeare 2025-11-23 12:38:28 -05:00
commit 57ef654a55
6 changed files with 120 additions and 2 deletions

View file

@ -13,6 +13,8 @@ namespace xo {
using xo::gc::IAlloc;
namespace obj {
static_assert(sizeof(Integer::int_type) == 8, "expected 64-bit representation for xo::obj::Integer");
Integer::Integer(int_type x) : value_{x} {}
gp<Integer>