1
0

Fixed Parameters

This commit is contained in:
2025-06-10 16:55:03 +02:00
parent e866e94303
commit 9afb3328ba
4 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
export def lumen-kwin-get-class [waittimesec = int]: nothing -> string {
mut timer = ($waittimesec | into int)
export def lumen-kwin-get-class [waittimesec: int]: nothing -> string {
mut timer = $waittimesec
while ($timer > 0) {
$timer | print
$timer -= 1