added link to github
This commit is contained in:
parent
d4be4c3989
commit
7d2a4975ce
3 changed files with 13 additions and 4 deletions
|
|
@ -41,7 +41,7 @@ The repl has the following syntax (It's work in progress, new capabilities will
|
||||||
b = vector(-1, 1)
|
b = vector(-1, 1)
|
||||||
c = "a + b"
|
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!
|
This updates vector ```a``` to twice it's size. And, because ```c``` is defined lazily, it is updated as well!
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -6,8 +6,11 @@
|
||||||
<link rel="stylesheet" href="src/css/app.css">
|
<link rel="stylesheet" href="src/css/app.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<a class="right" href="https://github.com/shautvast/matrepl" target="_blank">https://github.com/shautvast/matrepl</a>
|
||||||
<div id="console">
|
<div id="console">
|
||||||
<div id="command_history"><div id="bottom"></div></div>
|
<div id="command_history">
|
||||||
|
<div id="bottom"></div>
|
||||||
|
</div>
|
||||||
<label id="prompt">>
|
<label id="prompt">>
|
||||||
<textarea id="command_input" class="single_line" autofocus></textarea>
|
<textarea id="command_input" class="single_line" autofocus></textarea>
|
||||||
</label>
|
</label>
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,14 @@
|
||||||
body {
|
body {
|
||||||
font: 13px Arial, sans-serif;
|
font: 11px Arial, sans-serif;
|
||||||
background: black;
|
background: black;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
|
||||||
|
|
||||||
|
}
|
||||||
|
.right{
|
||||||
|
color: gray;
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
.background {
|
.background {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
|
@ -32,6 +37,7 @@ svg {
|
||||||
}
|
}
|
||||||
|
|
||||||
#console {
|
#console {
|
||||||
|
font: 13px Arial, sans-serif;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
color: greenyellow;
|
color: greenyellow;
|
||||||
background: black;
|
background: black;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue