Questions tagged [dyon]

For questions about the rust scripting / plugin language dyon.

Dyon is a rusty dynamically typed scripting language.

2 questions
1
vote
3 answers

How do I call a built-in Dyon function from Rust?

I'm trying to call a Dyon built-in function (sin) from Rust: use dyon::{Module, Runtime, Variable}; use std::sync::Arc; fn main() { let mut dyon_runtime = Runtime::new(); let module = Module::new(); let dyon_module = Arc::new(module); …
Michael Anderson
  • 70,661
  • 7
  • 134
  • 187
0
votes
1 answer

What is Dyon's Memory Model?

The Dyon Tutorial says it uses "lifetimes" rather than garbage collection or manual memory management. But how then does that lifetime model differ from Ownership in Rust? Dyon has a limited memory model because of the lack of a garbage collector.…
springworks00
  • 104
  • 15