Skip to content

Instantly share code, notes, and snippets.

View sureshkrishnan83's full-sized avatar

SureshKrishnan sureshkrishnan83

View GitHub Profile
@rchaganti
rchaganti / d3-swapVariables.go
Created August 11, 2020 11:16
D3 Swap Variables
Create a program that declares two integer variables i and j and assigns values 10 and 30.
Print the values of these variables. Add an expression to swap the values of the variables using assignment operator.
Finally, print the values of the variable values after swapping.