Skip to content

Instantly share code, notes, and snippets.

class Dollar {
int amount;
Dollar(int amount){
this.amount = amount;
}
Dollar times(int multiplier){
private int amount;
class Dollar extends Money {
Dollar(int amount){
this.amount = amount;
}
Dollar times(int multiplier){
return new Dollar(amount * multiplier);
}
class Dollar {
private int amount;
Dollar(int amount){
this.amount = amount;
}
Dollar times(int multiplier){
class Dollar extends Money {
Dollar(int amount, String currency){
super(amount,currency);
}
Money times(int multiplier){
return Money.dollar(amount * multiplier);
}
-- 削除
@ntk1000
ntk1000 / text.md
Last active August 29, 2015 14:10
how to setup development environment on windows

how to setup development environment on windows


このgistはstfuawsc_itg advent1日目の記事です


ちなみにstfuawscとか書いてますが、4letterwordsな激しい意味合いは持っていなくて

githubとmarkdownとrevealjsで作るプレゼン環境


このgistはstfuawsc_itg advent4日目の記事です


前日の@gappyネタに乗っかりました

キーボードのこと


このgistはstfuawsc_itg advent6日目の記事です


要約すると

@ntk1000
ntk1000 / stfuawsc_itg_day13.md
Last active August 29, 2015 14:11
このまとまりのなさ

OOのこと

(・A・)「OOPできますか?」

(^ω^)「はい」


数日後