cocoa.apple-script: adding some docs.

db4
John Benediktsson 2013-10-11 08:25:11 -07:00
parent 6069aef790
commit ec0741da35
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,13 @@
USING: help.markup help.syntax strings ;
IN: cocoa.apple-script
HELP: run-apple-script
{ $values { "str" string } }
{ $description "Runs the provided uncompiled AppleScript code." }
{ $notes "Currently, return values are unsupported." } ;
HELP: APPLESCRIPT:
{ $syntax "APPLESCRIPT: word ...applescript... ;APPLESCRIPT" }
{ $values { "word" "a word" } { "...applescript..." "AppleScript source text" } }
{ $description "Defines a word that when called will run the provided uncompiled AppleScript. The word has stack effect " { $snippet "( -- )" } " due to return values being currently unsupported." } ;

View File

@ -0,0 +1 @@
John Benediktsson