-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_hello.js
22 lines (21 loc) · 907 Bytes
/
_hello.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// ________ _________
// \________\--------___ ___ ____----------/_________/
// \_______\----\\\\\\ //_ _ \\ //////-------/________/
// \______\----\\|| (( ~|~ ))) ||//------/________/
// \_____\---\\ ((\ = / ))) //----/_____/
// \____\--\_))) \ _)))---/____/
// \__/ ((( (((_/
// ヾღ彡 | -))) - ))
// =================================================================
// _hello.js
// -----------------------------------------------------------------
// author: @archangel
// SEC LVL: 4
// Chars: 43
// Descr: Simplest scipt for testing reasons.
// Syntax: _hello
// =================================================================
function (context, args)
{
return "Hello World"; // Print "Hello World" to the console.
}