This file contains 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
;;; ikazuchi-mode.el --- ikazuchi, translate using web APIs, minor mode. | |
;;; | |
;;; Currently can use only Google. | |
;;; | |
(provide 'ikazuchi-mode) | |
;; set path to ikazuchi if you have not set PATH. | |
(defvar ikazuchi-path "ikazuchi") |
This file contains 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
package net.shomah4a.utils.generator.continuation | |
import scala.util.continuations.{reset, shift, cpsParam} | |
object Generator | |
{ | |
type GenParam[T] = (Option[T], Option[GeneratorSupport[T]]) | |
type GenState[T] = cpsParam[GenParam[T], GenParam[T]] |