Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Clipper.DBT
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
? "Hello World"
1 change: 1 addition & 0 deletions JQuey.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$("body").append("Hello world!");
1 change: 1 addition & 0 deletions Logo.eps
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
print [Hello,world !]
7 changes: 7 additions & 0 deletions Objective-c.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#import
#import
int main(void)
{
NSLog(@"Hello, world!");
return 0;
}
3 changes: 3 additions & 0 deletions Processing.pde
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
void setup(){
println("Hello, world!");
}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,22 @@ This is a repository full of implementations of the classic, "Hello, world!", in
- C++
- Chicken
- CoffeeScript
- Clipper
- Fortran
- Go
- Groovy
- Haskell
- Html
- Java
- JavaScript
- JQuey
- Kotlin
- Lua
- Logo
- Objective-c
- Pascal
- Perl
- Processing
- Python 2
- Python 3
- PHP
Expand Down
9 changes: 9 additions & 0 deletions html.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<p> Hello World....</p>
</body>
</html>