• Python 3.10
print("Hello, World!")
• Lisp
(print "Hello, World!")
function MyInfo() { | |
const RealName = ("Nguyen Hong Son"); | |
const Age = Math.random(10 - 20); // My Age range like that =) | |
const Name = ("crischutu07","SondolaVNXbox"); // everyone call me crischutu or Sondola like that =)) | |
const CurrentProgramLanguage = ("JavaScript","PHP"); // 2 Month of no coding I need to learning that again | |
console.log("${RealName}\n${Age} Random Age =))\n${Name}\n${CurrentProgramLanguage}\n) | |
}; | |
MyInfo(); | |
process.exit(1); |
console.log("Hello World!"); |
<?php | |
echo "Hello World!"; | |
?> |
⠀⣞⢽⢪⢣⢣⢣⢫⡺⡵⣝⡮⣗⢷⢽⢽⢽⣮⡷⡽⣜⣜⢮⢺⣜⢷⢽⢝⡽⣝ | |
⠸⡸⠜⠕⠕⠁⢁⢇⢏⢽⢺⣪⡳⡝⣎⣏⢯⢞⡿⣟⣷⣳⢯⡷⣽⢽⢯⣳⣫⠇ | |
⠀⠀⢀⢀⢄⢬⢪⡪⡎⣆⡈⠚⠜⠕⠇⠗⠝⢕⢯⢫⣞⣯⣿⣻⡽⣏⢗⣗⠏⠀ | |
⠀⠪⡪⡪⣪⢪⢺⢸⢢⢓⢆⢤⢀⠀⠀⠀⠀⠈⢊⢞⡾⣿⡯⣏⢮⠷⠁⠀⠀ | |
⠀⠀⠀⠈⠊⠆⡃⠕⢕⢇⢇⢇⢇⢇⢏⢎⢎⢆⢄⠀⢑⣽⣿⢝⠲⠉⠀⠀⠀⠀ | |
⠀⠀⠀⠀⠀⡿⠂⠠⠀⡇⢇⠕⢈⣀⠀⠁⠡⠣⡣⡫⣂⣿⠯⢪⠰⠂⠀⠀⠀⠀ | |
⠀⠀⠀⠀⡦⡙⡂⢀⢤⢣⠣⡈⣾⡃⠠⠄⠀⡄⢱⣌⣶⢏⢊⠂⠀⠀⠀⠀⠀⠀ | |
⠀⠀⠀⠀⢝⡲⣜⡮⡏⢎⢌⢂⠙⠢⠐⢀⢘⢵⣽⣿⡿⠁⠁⠀⠀⠀⠀⠀⠀⠀ | |
⠀⠀⠀⠀⠨⣺⡺⡕⡕⡱⡑⡆⡕⡅⡕⡜⡼⢽⡻⠏⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ | |
⠀⠀⠀⠀⣼⣳⣫⣾⣵⣗⡵⡱⡡⢣⢑⢕⢜⢕⡝⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ |
<?php | |
declare(strict_types=1); | |
namespace ExamplePlugin; | |
use pocketmine\command\Command; | |
use pocketmine\command\CommandSender; | |
use pocketmine\plugin\PluginBase; | |
use pocketmine\utils\TextFormat; |
{ | |
"qotd": [ | |
{ | |
"question": "What is the capital city of Vietnam?", | |
"answer": "Hanoi" | |
}, | |
{ | |
"question": "What is the official language of Vietnam?", | |
"answer": "Vietnamese" | |
}, |
#!/usr/bin/env bash | |
# Helper function to get user input | |
function get_input() { | |
read -p "$1: " value | |
echo $value | |
} | |
# Get plugin name from command line argument | |
PLUGIN_NAME=$1 |
#!/usr/bin/env bash | |
# better read statements | |
function get_input() { | |
read -p "$1: " value | |
echo $value | |
} | |
cols="$(tput cols)" # better than $COLUMNS | |
PLUGIN_NAME=$1 |
#!/usr/bin/env bash | |
source cmdHandler.sh | |
echo 'hello' | |
function test (){ | |
local args=$1 | |
echo "Test args: $args" | |
} | |
while true; do | |
read -p "> " maininput | |
# only use the first args (group) |