Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bartuer/ydiff
a language-aware tool for comparing programs
https://github.com/bartuer/ydiff
Last synced: 2 months ago
JSON representation
a language-aware tool for comparing programs
- Host: GitHub
- URL: https://github.com/bartuer/ydiff
- Owner: bartuer
- License: gpl-3.0
- Created: 2011-07-22T02:33:29.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-07-21T18:07:56.000Z (over 13 years ago)
- Last Synced: 2024-04-04T13:47:09.618Z (10 months ago)
- Language: Scheme
- Homepage: http://www.cs.indiana.edu/~yw21/ydiff.html
- Size: 136 KB
- Stars: 28
- Watchers: 6
- Forks: 142
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
- awesome-racket-and-scheme - ydiff - aware tool for comparing programs (Scheme / course)
README
* How to build and use
yDiff is implemented in Scheme. The Scheme implementation I'm using is Racket.
You can find it from http://racket-lang.org.yDiff supports multiple languages but currently it is not cleanly modularized
for different languages, and there is no Unix command line interface. In order
to use it, you need to load the 'diff-.ss' files in the Racket repl before
invoking the diff- functions. For example:(load "diff-scheme.ss")
(diff- "file1.ss" "file2.ss")* Contact
If you have suggestions, please contact Yin Wang ([email protected]).
* LICENSE
Copyright (C) 2011 Yin Wang ([email protected])
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.You should have received a copy of the GNU General Public License
along with this program. If not, see .