Example JAPPL Programs

Simple Screen Animation

>print hello
>wait 1
>clear screen
>print hi
>wait 1
>clear screen
  

Simple Calculator

>ask first number?
>make variable n1
>set variable n1 to [ask]

>ask second number?
>make variable n2
>set variable n2 to [ask]

>print ([n1]+[n2])