++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.
var AppView = Backbone.View.extend({
el: '#container',
initialize: function(){
this.render();
},
render: function(){
this.$el.html("Hello World");
}
});
var appView = new AppView();
echo "Hello World"
PRINT "Hello, world!"
#include
#include <stdio.h>
int main(){
printf("hello_world\nWelcome 2017!\n");
}
#include<iostream>
using namespace std;
int main(){
cout<< "hello world \n Welcome 2017!\n";
}
console.log("welcome 2017!");
print("welcome 2017!")
puts "Hello, world!"
int main(void) { puts("Hello, world!"); }
#include
int main() { std::cout << "Hello, world! "; return 0; }
using System; class Program { public static void Main(string[] args) { Console.WriteLine("Hello, world!"); } }
? "Hello World"
console.log 'Hello, world!'
program HelloWorld; begin Writeln('Hello, world!'); end.
Hello World!
import javax.swing.JFrame; //Importing class JFrame import javax.swing.JLabel; //Importing class JLabel public class HelloWorld { public static void main(String[] args) { JFrame frame = new JFrame(); //Creating frame frame.setTitle("Hi!"); //Setting title frame frame.add(new JLabel("Hello, world!"));//Adding text to frame frame.pack(); //Setting size to smallest frame.setLocationRelativeTo(null); //Centering frame frame.setVisible(true); //Showing frame } }
document.write('Hello, world!');
$("body").append("Hello world!");
println("Hello world!")
print [Hello, world!]
Hello World
disp('Hello, world!')
#import #import
int main(void) { NSLog(@"Hello, world! "); return 0; }
program HelloWorld; begin WriteLn('Hello, world!'); end.
print "Hello, world! ";
Hello World'; ?>void setup(){ println("Hello, world!"); }
print "Hello, world!"
cat('Hello, world! ')
puts "Hello, world!"
println("Hello, world!")
MsgBox "Hello, World!"
Module Module1 Sub Main() Console.WriteLine("Hello, world!") End Sub End Module
Hello World
let greeter = new Greeter("Hello"); alert(greeter.greet("World"));
## Brainfuck
++++++++[>++++[>++>+++>+++>+<<<<-]>+>+>->>+[<]<-]>>.>---.+++++++..+++.>>.<-.<.+++.------.--------.>>+.>++.
## Dogescript
plz console.loge with 'hello, world'
#include<iostream.h>
void main()
{
cout<<"Hello World!";
}
## hello world in c
``` C
#include<stdio.h>
void main()
{
printf("hello world !");
}