|
|
|
|
|
by trafnar
1000 days ago
|
|
What I like about Imba is that you can update a variable, and the result in the view/page is updated, without any special syntax. let count = 0
def increment
count++
tag App
<self>
<button @click=increment> "Increment"
<div> "Count: {count}"
imba.mount <App>
Try this example here: https://scrimba.com/scrim/cpbmKzsq(Imba is a compile-to-js language that includes JS/HTML/CSS and a react-like framework all as part of the language. https://www.imba.io) |
|