Skip to content
Go back

Demo Article

Published:  at  09:04 PM

frontmatter

Introductory Sentence

Table of contents

Open Table of contents

heading 1

main.py
print("this is code python snippet")

main.rs
fn main() {
println!("this is code rust snippet");
}

main.c
#include<stdio.h>
int main() {
printf("this is code c snippet");
}

main.cpp
#include<iostream>
using namespace std;
int main() {
cout << "this is code c++ snippet";
}

main.java
public class Main {
public static void main(String[] args) {
System.out.println("this is code java snippet");
}
}

index.js
console.log("this is code javascript snippet");

index.ts
console.log("this is code typescript snippet");

main.go
package main
import "fmt"
func main() {
fmt.Println("this is code golang snippet")
}

main.rb
puts "this is code ruby snippet"

index.php
<?php
echo "this is code php snippet";
?>

main.swift
import Foundation
print("this is code swift snippet")

Main.kt
fun main() {
println("this is code kotlin snippet")
}

Main.scala
object Main extends App {
println("this is code scala snippet")
}

Terminal window
echo "this is code bash snippet"

Terminal window
echo "this is code shell snippet"

Terminal window
Write-Host "this is code powershell snippet"

Mathematical Equation

E=mc2E = mc^2 abf(x)dx=F(b)F(a)\int_a^b f(x) \,dx = F(b) - F(a)

Demo Image

Figure 1: This is a demo image.

This is a demo article don’t take it seriously.