Join Nostr
2024-09-27 17:47:34 UTC

Ramsey Nasser on Nostr: is there any language that is reactive by default? the semantics of vue are really ...

is there any language that is reactive by default? the semantics of vue are really great for a lot of different kinds of systems but you have to do everything through javascript syntax/proxies which is a bit tedious. i was wondering if any language supported eg

let a = 2
let b = a * 2
print(b) // 4
a = 8
print(b) // 16

at the language level