PageRenderTime 107ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/README

http://github.com/yinwang0/ydiff
#! | 37 lines | 22 code | 15 blank | 0 comment | 0 complexity | 2121d54d05608fc09c27e33d79287fb1 MD5 | raw file
Possible License(s): GPL-3.0
  1. * How to build and use
  2. ydiff is implemented in Scheme. The Scheme implementation used for
  3. this project is Racket. You can get it from http://racket-lang.org.
  4. Currently there is no Unix command line interface. In order to use it,
  5. you need to load the 'diff-<lang>.ss' files in the Racket repl before
  6. invoking the diff-<lang> functions. For example:
  7. (load "diff-scheme.ss")
  8. (diff-scheme "file1.ss" "file2.ss")
  9. * Contact
  10. Yin Wang (yinwang0@gmail.com)
  11. * LICENSE
  12. Copyright (C) 2011 Yin Wang
  13. This program is free software: you can redistribute it and/or modify
  14. it under the terms of the GNU General Public License as published by
  15. the Free Software Foundation, either version 3 of the License, or
  16. (at your option) any later version.
  17. This program is distributed in the hope that it will be useful,
  18. but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. GNU General Public License for more details.
  21. You should have received a copy of the GNU General Public License
  22. along with this program. If not, see <http://www.gnu.org/licenses/>.