public
Description: The Nu programming language.
Homepage: http://programming.nu
Clone URL: git://github.com/timburks/nu.git
nu / examples / Growler / nu / alert.nu
100644 12 lines (11 sloc) 0.39 kb
1
2
3
4
5
6
7
8
9
10
11
12
;; alert.nu
;; Display an alert box from Nu.
;;
;; Copyright (c) 2007 Tim Burks, Neon Design Technology, Inc.
 
(function alert (message)
     ((NSAlert alertWithMessageText:"The Nu one says:"
               defaultButton:"ignore"
               alternateButton:"abort"
               otherButton:"retry"
               informativeTextWithFormat:(message stringValue))
      runModal))