参照https://ja.wikipedia.org/wiki/Smalltalk
| tmp |"変数宣言" tmp := 1. "数値型の定義" tmp := 'moji'. "文字型の定義" tmp := true. "boolean型の定義" tmp := Date Today. "日付型の定義" tmp := Timestamp now. "時間型の定義" tmp := Array with:1 with:2 with:3."Array型の定義" tmp := List new add:1. "List 型の定義" tmp := nil. "UndefinedObject型の定義" ^tmp. "返却値"