alert "hello" thankyou:-‐> alert "Thank you" #OSによって使用する継承クラスを決定 IMPL = if OS_IOS then class HogeWindowInplIos extends HogeWindowInplBase hello:(e)-‐> alert "hello iOS" else if OS_ANDROID then class HogeWindowInplAndroid extends HogeWindowInplBase hello:(e)-‐> alert "hello Android" #コントローラ実装部 impl = new IMPL() clickHello = (e)-‐> impl.hello() #ここはOSによって異なる clickThankyou = (e)-‐> impl.thankyou() #ここはOS共通 app/controllers/HogeWindow.coffee