Index
Calc
About
agenc
1
// Calculator
2
1+1
= 2
3
4
// Variables
5
let a = 1;
= 2
6
a + 32;
= 33
7
8
// Functions
9
const fn = (a, b) => a + b;
= 33
10
fn(1, 2);
= 3
11
3
Tutorial
Config
Align result to right
Show line numbers
Shortcuts
Enter
: Add New Block
Ctrl+Enter
: Compute
Shift+Enter
: Add a line inside the current block
Shift+Backspace
: Delete the current block