Compare commits

...

4 Commits

Author SHA1 Message Date
ilsix
9e4e1f9ba9 Untested Python 2024-04-04 20:21:30 +02:00
ilsix
2ee9ac0100 Untested PHP 2024-04-04 20:20:52 +02:00
ilsix
b2e442aa11 Untested PHP 2024-04-04 20:20:32 +02:00
ilsix
a0dd547c99 Untested Rust 2024-04-04 20:19:43 +02:00
3 changed files with 7 additions and 0 deletions

3
php/helloworld.php Normal file
View File

@ -0,0 +1,3 @@
<?php
echo 'Hello World!';
?>

1
python/helloworld.py Normal file
View File

@ -0,0 +1 @@
print("Hello World!")

3
rust/helloworld.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello World!");
}