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
| ;;; http://jutememo.blogspot.com/2012/03/blog-post.html | |
| ;;; in Emacs Scratch Buffer | |
| (setq x 7) | |
| 7 | |
| (defun g () x) | |
| g | |
| (defun f () |
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
| (ns clj-selenium-test.core | |
| (:use [clj-webdriver.taxi])) | |
| (defn auto-login [] | |
| "http://www.walk-21.com に自動ログインする。REPL にて | |
| user=> (use 'clj-selenium-test.core) | |
| user=> (auto-login) | |
| " | |
| ;; top 画面を表示 | |
| (set-driver! {:browser :firefox} "http://www.walk-21.com/") |
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
| (defn quit | |
| ([] (System/exit 0)) | |
| ([status] (System/exit status))) |
NewerOlder