Files
workspace/org/0.org
e2hang ebcee63b7c New
2026-01-09 00:05:37 +08:00

40 lines
710 B
Org Mode

* good
** better
*** best
**** whatisthis?
ok, so for this, we need a
$$x = \frac{1}{2}$$
*** ono
:LOGBOOK:
CLOCK: [2025-12-26 周五 23:08]--[2025-12-27 周六 14:18] => 15:10
CLOCK: [2025-12-26 脰脺脦氓 21:14]--[2025-12-26 脰脺脦氓 21:17] => 0:03
:END:
* C codes
** A simple printf
#+begin_src C
#include <stdio.h>
int main(){
printf("Hello, world!");
return 0;
}
#+end_src
#+RESULTS:
| Hello | world! |
| what | it |
|-------+--------|
#+TBLMF: $2 = $1 + "X"
* Test Table
** Table1
| n | n^2 | n^3 |
|---+-----+-----|
| 1 | 1 | 10 |
| 2 | 4 | 8 |
| 3 | 9 | 27 |
| 4 | 16 | 64 |
| 5 | 25 | 125 |
| 6 | 36 | 216 |
#+TBLFM: $2 = $1 * $1 :: $3 = $1 * $1 * $1 :: @2$3 = 10