From dd4d3e61b7787f2cc72b0505704c080e030c8b4d Mon Sep 17 00:00:00 2001 From: pudg Date: Wed, 15 Apr 2020 16:47:54 -0700 Subject: [PATCH] added persistent variable documentation --- index.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/index.html b/index.html index 3246341..bb35f71 100644 --- a/index.html +++ b/index.html @@ -199,6 +199,12 @@

Variables

During execution it will keep creating and assigning a variable named dog_name the values "Chai” and "Moo”.

+ +

+ In DMS variables that are to be remembered across component executions and shared amongst an entire project + are persistent. Persistent variables are denoted by prefixing and suffixing the + variable identifier with double underscores as follows: __dog_name__. +