This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VICE_REMOTE_MONITOR = true | |
VICE_REU = true | |
VICE_CARTRR = cartridge/rr38p-tmp12reu.bin | |
VICE_PATH = /Applications/x64.app/Contents/MacOS/x64 | |
VICE_OPTS = +confirmexit -rrbioswrite | |
DEFAULT_PRG = learning | |
include c64_kickass.mk | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a={{a}} | |
b={{b}} | |
c={{c}} | |
d={{d}} | |
e={{e}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module PythonishDecorator | |
def method_added(name) | |
return unless @decorations | |
decorations = @decorations.dup | |
@decorations = nil | |
alias_method "undecorated_#{name}", name | |
define_method(name) do |*args| |