With Vucript, you don't have to write return values and you can write type annotation to the right side of variable name. In addition, Vucript imports ref and reactive or both from vue automatically.
Please don't use const when defining variable of primitive types if you want to modify the value.
You don't have to write import { something } from 'Vucript', because Vucript type definitions are only used for type assertion.
Modifying Reactive Values by Functions
In Vucript, you don't have to add .valueto your ref value. Just modify value like normal javascript primitive value.
In addition, Vucript automatically returns functions you defined. You can use both normal functions and arrow functions!