Austin Henley
Austin Henley
While editing a cell, if I _undo_ or _redo_ then the prior text is appended to the current text. This does not appear to happen in every notebook. It seems...
I often want to tinker with a cell to try different arguments, but eventually go back to the cell's original content provided by the tutorial before I proceed. However, there...
Scroll ribbon left, scroll ribbon right, and toggle overview (possibly others) do not work on MacOS with a 2020 MBP. Using Atom's keybinding resolver, it appears that the third key...
From: func fizzbuzz(n : int) void { To: func fizzbuzz(n : int) : void {
Decide on syntax for arrays then support it.
Variables should no longer require initialization. var x : i32; // Now allowed NOTE: Later the semantic analyzer should detect uninitialized variables.
var x : u8 = 256; // ERROR!