I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
241 B

4 years ago
  1. #+TITLE: Hello, world!
  2. #+AUTHOR: Christopher James Hayward
  3. #+DATE: 2021-01-17
  4. #+HUGO_BASE_DIR: ~/.local/source/website
  5. #+HUGO_SECTION: posts
  6. #+begin_src c
  7. #include <stdio.h>
  8. int main() {
  9. printf("Hello, world!");
  10. return 0;
  11. }
  12. #+end_src