added link to github

This commit is contained in:
Sander Hautvast 2021-03-05 08:58:07 +01:00
parent d4be4c3989
commit 7d2a4975ce
3 changed files with 13 additions and 4 deletions

View file

@ -41,7 +41,7 @@ The repl has the following syntax (It's work in progress, new capabilities will
b = vector(-1, 1)
c = "a + b"
```
* and press enter. Then using the mouse pointer move a or b. Or try: ```a = 2 * a```
* and press enter. Then using the mouse pointer move vector ```a``` or ```b```. Or try: ```a = 2 * a```
This updates vector ```a``` to twice it's size. And, because ```c``` is defined lazily, it is updated as well!

View file

@ -6,8 +6,11 @@
<link rel="stylesheet" href="src/css/app.css">
</head>
<body>
<a class="right" href="https://github.com/shautvast/matrepl" target="_blank">https://github.com/shautvast/matrepl</a>
<div id="console">
<div id="command_history"><div id="bottom"></div></div>
<div id="command_history">
<div id="bottom"></div>
</div>
<label id="prompt">&gt;
<textarea id="command_input" class="single_line" autofocus></textarea>
</label>

View file

@ -1,9 +1,14 @@
body {
font: 13px Arial, sans-serif;
font: 11px Arial, sans-serif;
background: black;
overflow: hidden;
}
}
.right{
color: gray;
position: absolute;
right: 0;
}
.background {
position: absolute;
left: 0;
@ -32,6 +37,7 @@ svg {
}
#console {
font: 13px Arial, sans-serif;
padding: 5px;
color: greenyellow;
background: black;