I'm want to make a variable from a list item, but i can't find a method to paste a dollar sign a front of it. Beneath are the methods that i tried.
$hoi: yellow;
$test: hoi;
helpMe{
background: $#{$test}; //error
background: $$test; //error
background: $nth($test, 1); //error
background: unquote("$")#{$test}; //output: $hoi
background: unquote("$")nth($test, 1); //output: $ hoi
};
Is there any method to paste a dollar sign before a variable and still get recognized as a variable?