Guest User

Untitled

a guest
Dec 12th, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #!/usr/bin/wish
  2.  
  3. # ボタンを作る
  4. pack [button .b1 -text "Push Me!" -command [list Run ls -C]]
  5.  
  6. # テキスト領域を作る
  7. pack [text .console -height 8] -fill both -expand yes
  8.  
  9. # callback 手続きを実装する
  10. proc Run args {
  11. .console insert end [exec {*}$args]\n
  12. .console see end
  13. }
Add Comment
Please, Sign In to add comment