Verify the following code blocks render as code blocks and highlight properly.
*** /path/to/original ''timestamp''
--- /path/to/new ''timestamp''
***************
*** 1 ****
! This is a line.
--- 1 ---
! This is a replacement line.
It is important to spell
-removed line
+new line
CC=gcc
CFLAGS=-I.
hellomake: hellomake.o hellofunc.o
$(CC) -o hellomake hellomake.o hellofunc.o -I.
{"employees":[
{"firstName":"John", "lastName":"Doe"},
]}
**bold**
*italics*
[link](www.example.com)
document.write('Hello, world!');
body {
background-color: red;
}
int main (void)
{
printf ("Hello world!\n");
}
print "Hello, world!"
<employees>
<employee>
<firstName>John</firstName> <lastName>Doe</lastName>
</employee>
</employees>
print "Hello, World!\n";
echo "Hello World"
echo '<p>Hello World</p>';
console.log(“Hello world!”);
using System;
class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
}
}
cout << "Hello World!";
return 0;
}
main()
{
SELECT column_name,column_name
FROM table_name;
package main
import "fmt"
func main() {
fmt.Println("Hello, 世界")
}
puts "Hello, world!"
import javax.swing.JFrame; //Importing class JFrame
import javax.swing.JLabel; //Importing class JLabel
public class HelloWorld {
public static void main(String[] args) {
JFrame frame = new JFrame(); //Creating frame
frame.setTitle("Hi!"); //Setting title frame
frame.add(new JLabel("Hello, world!"));//Adding text to frame
frame.pack(); //Setting size to smallest
frame.setLocationRelativeTo(null); //Centering frame
frame.setVisible(true); //Showing frame
}
}