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
import Cocoa | |
//青色のオブジェクトを作成 | |
let blue = NSColor.blueColor() | |
blue.setFill() | |
//100x100 の4角形を作成 | |
let r = NSRect(x:0, y:0, width:100, height:100) |