Compare commits

..

6 Commits

Author SHA1 Message Date
ilsix
df8b5a1a08 Untested Fortran 2024-04-04 20:35:27 +02:00
ilsix
604aa8561a Untested Haskell 2024-04-04 20:32:48 +02:00
ilsix
eef90ddefc Untested Swift 2024-04-04 20:30:53 +02:00
ilsix
dd683e62f6 Untested Ruby 2024-04-04 20:25:13 +02:00
ilsix
294bf271a0 Untested Kotlin 2024-04-04 20:24:15 +02:00
ilsix
f594379a8c Untested Perl 2024-04-04 20:22:41 +02:00
6 changed files with 10 additions and 0 deletions

3
fortran/helloworld.f Normal file
View File

@ -0,0 +1,3 @@
program hello
print *, "Hello World!"
end program

1
haskell/helloworld.hs Normal file
View File

@ -0,0 +1 @@
main = putStrLn "Hello World!"

3
kotlin/helloworld.kt Normal file
View File

@ -0,0 +1,3 @@
fun main(args : Array<String>) {
println("Hello World!")
}

1
perl/helloworld.pl Normal file
View File

@ -0,0 +1 @@
print "Hello World!\n";

1
ruby/helloworld.rb Normal file
View File

@ -0,0 +1 @@
puts 'Hello World!'

1
swift/helloworld.swift Normal file
View File

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