Tensor Flow Functions -add
Overview
To create a variable set to the value of 2
let x = tf.variable(tf.scalar(2)); x.add(tf.scalar(2));
Try it!