RosettaCodeData/Task/General-FizzBuzz/AutoHotkey/general-fizzbuzz.ahk
2023-07-01 13:44:08 -04:00

16 lines
314 B
AutoHotkey

; Test parameters
max := 20, fizz := 3, buzz := 5, baxx := 7
Loop % max {
output := ""
if (Mod(A_Index, fizz) = 0)
output .= "Fizz"
if (Mod(A_Index, buzz) = 0)
output .= "Buzz"
if (Mod(A_Index, baxx) = 0)
output .= "Baxx"
if (output = "")
FileAppend %A_Index%`n, *
else
FileAppend %output%`n, *
}