Skip to content

Instantly share code, notes, and snippets.

View queky18's full-sized avatar
🌳
Pragmatism in Personal Development - the Doers Movement

Adrian Gheorghe queky18

🌳
Pragmatism in Personal Development - the Doers Movement
View GitHub Profile
@queky18
queky18 / Day 0: Hello, World.
Last active February 3, 2024 01:02
Hackerrank - 30 days of code in PHP
<?php
$_fp = fopen("php://stdin", "r");
$inputString = fgets($_fp); // get a line of input from stdin and save it to our variable
// Your first line of output goes here
print("Hello, World.\n");
// Write the second line of output