fix name, add license, write readme

This commit is contained in:
Aidan Hahn 2019-11-29 12:57:03 -08:00
parent b0d9bb4643
commit 02585487a3
No known key found for this signature in database
GPG key ID: 327711E983899316
10 changed files with 729 additions and 8 deletions

View file

@ -1,11 +1,28 @@
/* SHS: Syntactically Homogeneous Shell
* Copyright (C) 2019 Aidan Hahn
*
* 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 <https://www.gnu.org/licenses/>.
*/
package main
import (
"strings"
"os"
"git.callpipe.com/aidan/shsh"
"git.callpipe.com/aidan/shs"
)
func main() {
shsh.PrintSExpression(shsh.Lex(strings.Join(os.Args[1:], " ")))
shs.PrintSExpression(shs.Lex(strings.Join(os.Args[1:], " ")))
}