Compare commits
6 Commits
9e4e1f9ba9
...
df8b5a1a08
Author | SHA1 | Date | |
---|---|---|---|
|
df8b5a1a08 | ||
|
604aa8561a | ||
|
eef90ddefc | ||
|
dd683e62f6 | ||
|
294bf271a0 | ||
|
f594379a8c |
3
fortran/helloworld.f
Normal file
3
fortran/helloworld.f
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
program hello
|
||||||
|
print *, "Hello World!"
|
||||||
|
end program
|
1
haskell/helloworld.hs
Normal file
1
haskell/helloworld.hs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
main = putStrLn "Hello World!"
|
3
kotlin/helloworld.kt
Normal file
3
kotlin/helloworld.kt
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
fun main(args : Array<String>) {
|
||||||
|
println("Hello World!")
|
||||||
|
}
|
1
perl/helloworld.pl
Normal file
1
perl/helloworld.pl
Normal file
|
@ -0,0 +1 @@
|
||||||
|
print "Hello World!\n";
|
1
ruby/helloworld.rb
Normal file
1
ruby/helloworld.rb
Normal file
|
@ -0,0 +1 @@
|
||||||
|
puts 'Hello World!'
|
1
swift/helloworld.swift
Normal file
1
swift/helloworld.swift
Normal file
|
@ -0,0 +1 @@
|
||||||
|
print("Hello World!")
|
Loading…
Reference in New Issue
Block a user