Skip to content

Commit 5058663

Browse files
committed
Close #2: Clarified license and copyright
1 parent ed9bd1b commit 5058663

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ReadMe.org

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ It is a transpiler which generates C/C++ from a Lisp dialect.
1010

1111
You can see the [[https://macoy.me/blog/programming/CakelispIntro][introduction to Cakelisp]] and check out the [[https://news.ycombinator.com/item?id=25491568][Hacker News announcement thread]].
1212

13+
* Terms
14+
Cakelisp is copyright (C) 2020 Macoy Madson ~<[email protected]>~.
15+
16+
Licensed under ~GPL-3.0-or-later~. Contact [email protected]~ if you would like to negotiate an exception for your use-case.
1317
* Features
1418
- *The metaprogramming capabilities of Lisp:* True full-power macro support. Macros can use compile-time code execution to conditionally change what is output based on the context of the invocation
1519
- *The performance of C:* No heavyweight runtime, boxing/unboxing overhead, etc.

src/Main.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ void printHelp(const CommandLineOption* options, int numOptions)
2222
"OVERVIEW: Cakelisp\n\n"
2323
"Cakelisp is a transpiler/compiler which generates C/C++ from a Lisp dialect.\n\n"
2424
"Created by Macoy Madson <[email protected]>.\nhttps://macoy.me/code/macoy/cakelisp\n"
25-
"Copyright (c) 2020 Macoy Madson.\n\n"
25+
"Copyright (c) 2020 Macoy Madson.\n"
26+
"Licensed under GPL-3.0-or-later.\n\n"
2627
"USAGE: cakelisp [options] <input .cake files>\nAll options must precede .cake files.\n\n"
2728
"OPTIONS:\n";
2829
Logf("%s", helpString);

0 commit comments

Comments
 (0)