1 MACRO f0 = 0 2 MACRO f1 = 1 3 MACRO f2 = 2 4 MACRO f3 = 3 5 6 #LONG MACRO f 7 f0() 8 f1() 9 f2() 10 f3() 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. 13 END MACRO 14 15 recharge --max-battery f() --noisy-dry-run 16