mirror of
https://github.com/tstack/lnav
synced 2024-11-05 21:21:19 +00:00
dd8a23ad51
... and many other tweaks.
943 B
943 B
{ "comment": "This is JSON front-matter" }
Test
- One
- Two
- Three
Bold red
Underline
Hello,
World!
Goodbye, World!
foo bar bar
baz "xyz"
/*
* This program prints "Hello, World!"
*/
#include <stdio.h>
int main() {
printf("Hello, World!\n");
}
def hw(name):
"""
This function prints "Hello, <name>!"
"""
print(f"Hello, {name}!") # test comment
<?xml version="1.0" encoding="utf-8" ?>
<books>
<!-- Line comment -->
<book id="100">
<author>Finnegan</author>
</book>
</books>