A Pen by Damon Sicore on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- web-interactive-terminal --> | |
<!-- https://github.com/mattConn/web-interactive-terminal --> | |
<body> | |
<div id="web-terminal-ctn"> | |
<div id="web-terminal"></div> | |
<form id="web-terminal-form"> | |
<input id="web-terminal-input" type="text" placeholder="$" autocomplete="off" autofocus /> | |
<input type="submit" /> | |
</form> | |
</div> |
I hereby claim:
- I am damons on github.
- I am sicore (https://keybase.io/sicore) on keybase.
- I have a public key ASADrC5oMznvHkEet_owyPWThK7dsOnm1i-oJrFtvXMZ8go
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* SPIDER -- a sample adventure game, by David Matuszek. | |
Consult this file and issue the command: start. */ | |
:- dynamic at/2, i_am_at/1, alive/1. /* Needed by SWI-Prolog. */ | |
:- retractall(at(_, _)), retractall(i_am_at(_)), retractall(alive(_)). | |
/* This defines my current location. */ | |
i_am_at(meadow). |