Remix.run Logo
evil_buzzard 4 hours ago

the claim of "no runtime" is a bit dubious... you're telling me that you're statically linking a full, modern UI library into every app?

avaer 2 hours ago | parent | next [-]

A runtime is needed for GC, unless you're fundamentally changing Javascript. Even golang has a runtime.

pjmlp 22 minutes ago | parent [-]

Even C has one, regardless of how tiny it happens to be, or the possibility of freestanding deployment.

In compiler speak, a runtime provides all infrastructure required by the language for program startup, shutdown, infrastructure for the standard library execution.

skibz 44 minutes ago | parent | prev | next [-]

Its documentation mentions a garbage collector.

https://docs.perryts.com/language/supported-features.html#ga...

satvikpendem an hour ago | parent | prev [-]

They probably are, given that's how Flutter and other Rust GUI frameworks work too.