1MACRO f0 = 0
2MACRO f1 = 1
3MACRO f2 = 2
4MACRO f3 = 3
5
6#LONG MACRO f
7f0()
8f1()
9f2()
10f3()
11# Note that "END MACRO" by itself is potentially a completely valid command.
12# This will actually fail because the macro f() is now undefined.
13END MACRO
14
15recharge --max-battery f() --noisy-dry-run
16