-
I'm using Monokai in the browser extension, and this code
```
t = table: x, y
row: 1, 2
row: 3, 4
end
t.row-n(1)
```
produces this output:
![image](https://user-images.githubusercontent…
-
```
data Element: elt(v, ref parent :: Option) end
fun fynd(e :: Element) -> Element:
cases (Option) e!parent:
| none => e
| some(v) => fynd(e!parent.value)
end
end
fun union(e…
-
I ran
```
fun iter(a :: Number, b :: Number, count :: Number) -> Number:
if count == 0:
b
else:
iter((a + b), a, (count - 1))
end
end
fun fib(n :: Number) -> Number:
it…
-
We already have a data type for `Color`s; we should use it exclusively.
-
![snippet](https://cloud.githubusercontent.com/assets/918464/19603889/d5ac5c94-9780-11e6-9e2e-2a159b4f37eb.png)
This is on Firefox on Windows. @jswrenn does this have to do with any of the styling c…
-
EOM
-
Hi!
I seem to be having trouble accessing published code. For example, if I use the link from pressing publish and paste it to an in cognito window, it just keeps loading.
Thanks!
-
This probably involves a tweak to module propagation in the REPL, but the builtins like `lists` are not available at the REPL even after clicking "Run" (or using `restart-interactions`).
-
#### Environment details
- OS: OSX 10.15.2
- Node.js version: v11.10.1
- npm version: 6.13.4
- `googleapis` version: 46.0.0
#### Steps to reproduce
1. Upload a plain text file …
-
We need to sometimes write tests in multiple ways:
- lhs
- rhs as an _answer_
- rhs as an _expression_
It's painful to write
```
lhs is rhs-answer
lhs is rhs-expression
```
because it duplicate…