記事へのコメント1件
- 注目コメント
- 新着コメント
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
SOM: Simple Object Machine
A minimal Smalltalk for teaching of and research on Virtual Machines. SOM Language Example Try SO... A minimal Smalltalk for teaching of and research on Virtual Machines. SOM Language Example Try SOM in a REPL Fibonacci = ( "defines a subclass of Object" fib: n = ( "defines the fib method with the argument n" ^ n <= 1 ifTrue: 1 ifFalse: [ (self fib: (n - 1)) + (self fib: (n - 2)) ] ) ) A simple class implementing #fib: to compute the fibonacci numbers. For more, see the standard library



2015/12/29 リンク