Files
webtech/ora10/proj1/dancingletters/_util.scss
2025-11-28 16:57:23 +01:00

17 lines
337 B
SCSS

@use "sass:math";
@use "sass:list";
@function random($min, $max){
@if ($min > $max){
@error "Invalid arguments"
}
@return math.random(($max - $min) + 1) + $min - 1;
}
@function choose($list){
@return list.nth($list, math.random(list.length($list)));
}
@debug random(-5, 5);
@debug choose(apple banana cherry);