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.

16 lines
223 B

  1. +++
  2. title = "Hello, world!"
  3. author = ["Christopher James Hayward"]
  4. date = 2021-01-17
  5. lastmod = 2021-02-01T16:10:18-05:00
  6. draft = false
  7. +++
  8. ```c
  9. #include <stdio.h>
  10. int main() {
  11. printf("Hello, world!");
  12. return 0;
  13. }
  14. ```