jinko-core / jinko

Jinko is a small and safe interpreted language with fast Rust and C FFI
GNU General Public License v2.0
32 stars 6 forks source link

Add record update syntax #676

Open CohenArthur opened 4 months ago

CohenArthur commented 4 months ago
where x = Foo(a: 1, b: 2, c: 3);
where y = x with(b: 99, c: 100);