demo - HTMLify profile
files of /demo/code/
import java.util.Random
fun main() {
val options = arrayOf("Rock", "Paper", "Scissors")
while (true) {
p
fun main() {
val options = arrayOf("Rock", "Paper", "Scissors")
while (true) {
p
<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
</head>
<body>
<h1>Welcome to My Web Page</h1>
<p>Th
<html>
<head>
<title>My Web Page</title>
</head>
<body>
<h1>Welcome to My Web Page</h1>
<p>Th
let length = 5.0
let width = 3.0
let area = length * width
print("Area of the rectangle: \(area)")
let width = 3.0
let area = length * width
print("Area of the rectangle: \(area)")
public class SumCalculator {
public static void main(String[] args) {
int num1 = 5;
int num2 = 10;
public static void main(String[] args) {
int num1 = 5;
int num2 = 10;
#include <iostream>
using namespace std;
int factorial(int n) {
if (n <= 1)
return 1;
return n * factoria
using namespace std;
int factorial(int n) {
if (n <= 1)
return 1;
return n * factoria
#include <iostream>
using namespace std;
int main() {
int year;
cout << "Enter a year: ";
cin >> year;
using namespace std;
int main() {
int year;
cout << "Enter a year: ";
cin >> year;
#include <iostream>
using namespace std;
int main() {
int n;
cout << "Enter an integer: ";
cin >> n;
using namespace std;
int main() {
int n;
cout << "Enter an integer: ";
cin >> n;
#include <iostream>
using namespace std;
int main() {
int i, n;
bool is_prime = true;
using namespace std;
int main() {
int i, n;
bool is_prime = true;
// program to check if a number is prime or not
// take input from the user
const number = parseInt(prompt("Enter a positive
// take input from the user
const number = parseInt(prompt("Enter a positive
CREATE TABLE Students (
StudentID INT PRIMARY KEY,
FirstName VARCHAR(50),
LastName VARCHAR(50),
Age INT
);
StudentID INT PRIMARY KEY,
FirstName VARCHAR(50),
LastName VARCHAR(50),
Age INT
);
const currentDate = new Date();
console.log(`Current Date and Time: ${currentDate}`);
console.log(`Current Date and Time: ${currentDate}`);
const currentDate = new Date();
console.log(`Current Date and Time: ${currentDate}`);
console.log(`Current Date and Time: ${currentDate}`);
section .data
hello db 'Hello, World!',0
section .text
global _start
_start:
; Write the string to stdout (
hello db 'Hello, World!',0
section .text
global _start
_start:
; Write the string to stdout (
IDENTIFICATION DIVISION.
PROGRAM-ID. HelloWorld.
PROCEDURE DIVISION.
DISPLAY "Hello, World!".
STOP RUN.
PROGRAM-ID. HelloWorld.
PROCEDURE DIVISION.
DISPLAY "Hello, World!".
STOP RUN.
using System;
class Program {
static void Main() {
Console.WriteLine("Hello, World!");
}
}
class Program {
static void Main() {
Console.WriteLine("Hello, World!");
}
}
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
import "fmt"
func main() {
fmt.Println("Hello, World!")
}
PLEASE,1<-#9:110DUP(205)DOCOMEFROM(9)ABSTAIN#34DUP(210)NEXT#44SUB#2(0)REM~#6
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
(=<`:9876Z4321UT.-Q+*)M'&%$H"""'~}|Bzyxwvutsrqponmlkjihgfedcba`_^][
ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-, +*
ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-, +*
object HelloWorld {
def main(args: Array[String]): Unit = {
println("Hello, World!")
}
}
def main(args: Array[String]): Unit = {
println("Hello, World!")
}
}
name = "John"
greeting = "Hello, #{name}!"
puts greeting
greeting = "Hello, #{name}!"
puts greeting