Download (right-click and "save as")

#
# @author: Phoenix Integration
# @description: An example ScriptWrapper
#

# declare the variables
variable: x double input
variable: y double output

# ------------------------------------------
script:

option explicit

sub run

   y = x

end sub