1 First Note
jess edited this page 2026-04-15 09:38:07 -07:00

First Note

Open the app

open /Applications/Acord.app

Write markdown

# Today's notes

Some thoughts.

| Quantity | Value |
| -------- | ----- |
| Mass     | 100   |
| Velocity | 9.8   |

Cmd+T inserts a table.

Evaluate a line

/= 2 + 2
    → 4

/= sin(pi / 2)
    → 1
let m = 100
let v = 9.8

/= 0.5 * m * v^2
    → 4802
fn ke(m, v) {
    return 0.5 * m * v^2
}

/= ke(100, 9.8)
    → 4802

Save

Cmd+S. Autosave also runs every 100ms to ~/.acord/notes/.

See also