Skip to content

Commit

Permalink
Add license
Browse files Browse the repository at this point in the history
  • Loading branch information
tungstengmd authored Mar 18, 2024
1 parent c275559 commit 001d1aa
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
Binary file added .script.js.swp
Binary file not shown.
25 changes: 25 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
GLWT(Good Luck With That) Public License
Copyright (c) Everyone, except Author

Everyone is permitted to copy, distribute, modify, merge, sell, publish,
sublicense or whatever they want with this software but at their OWN RISK.

Preamble

The author has absolutely no clue what the code in this project does.
It might just work or not, there is no third option.


GOOD LUCK WITH THAT PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION, AND MODIFICATION

0. You just DO WHATEVER YOU WANT TO as long as you NEVER LEAVE A
TRACE TO TRACK THE AUTHOR of the original product to blame for or hold
responsible.

IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.

Good luck and Godspeed.
2 changes: 1 addition & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ switch (startScript) {
housenumber = prompt("Enter your house number.");
street = prompt("Enter your street.");
town = prompt("Enter your town.");
town = town.charAt(0).toUpperCase() + town.slice(1); //capitalises first letter by slicing it off and replacing it
town = town.charAt(0).toUpperCase + town.slice(1); //capitalises first letter by slicing it off and replacing it
house = housenumber + ", " + street + ", " + town;
alert(`You live at ${house}.`);
break;
Expand Down

0 comments on commit 001d1aa

Please sign in to comment.