Skip to content

Instantly share code, notes, and snippets.

@Haroenv
Created February 7, 2023 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Haroenv/0510cc916742e268b310e328cd41eb70 to your computer and use it in GitHub Desktop.
Save Haroenv/0510cc916742e268b310e328cd41eb70 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
@function foo($a, $b) {
@return $a + $b;
}
@function bar($start) {
$output: $start;
@for $i from 0 to 100 {
$output: $output + foo($i, 3)
}
@return $output
}
selector {
single: foo(1, 2);
multi_string: bar('');
multi_number: bar(0);
}
selector {
single: 3;
multi_string: "3456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102";
multi_number: 5250;
}
{
"sass": {
"compiler": "dart-sass/1.32.12",
"extensions": {},
"syntax": "SCSS",
"outputStyle": "expanded"
},
"autoprefixer": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment