Skip to content

Commit

Permalink
Update terminal.js
Browse files Browse the repository at this point in the history
  • Loading branch information
MegaTheLEGEND authored Feb 4, 2024
1 parent 46ede6d commit e93029f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions gs/terminal/terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function ascii_art() {
let commandHistory = [];
let commandIndex = 0;

let YOUR_FUNCTIONS = ["SearchGitHubProfile", "printInfoAboutDev", "help", "demo_menu", "exit", "hello", "cool", "ifconfig", "date", "whoami", "clear", "pwd", "ping","hackertyper"];
let YOUR_FUNCTIONS = ["SearchGitHubProfile", "printInfoAboutDev", "help", "demo_menu", "exit", "hello", "cool", "ifconfig", "date", "whoami", "clear", "pwd", "ping","ascii_art"];

async function add_numbers() {
let number1 = await term3.input("First number to add");
Expand Down Expand Up @@ -267,8 +267,10 @@ function help() {
term3.output(" • SearchGitHubProfile -- show stats for github users");
term3.output(" • ifconfig -- network info.");
term3.output(" • whoami");
term3.output(" • clear -- clear all text.");
term3.output(" • ping -- ping a site.");
term3.output(" • exit -- stop the terminal.");
term3.output(" • clear -- clears all text.");
term3.output(" • ping -- pings a site.");
term3.output(" • exit -- stops the terminal.");
term3.output(" • date -- displays the date.");
term3.output(" • pwd -- displays the directory.");

}

0 comments on commit e93029f

Please sign in to comment.