amvm 0.1.0

Apika's My Virtual Machine. A virtual machine with Intermediate Lenguage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
@let $x 0u8

{
  @const $y "Hello Y!"

  =$x +$x 1u8

  @puts +"Inner X = " $x
  @puts +"\nInner Y = " $y
}

@puts +"\nX = " $x
@puts +"\nY = " $y