Skip to content

Latest commit

 

History

History
144 lines (120 loc) · 1.52 KB

File metadata and controls

144 lines (120 loc) · 1.52 KB
const text = 'Hello world!';
Console.log(text);
class Welcome extends React.Component {
  render() {
    return <h1>Hello, {this.props.name}</h1>;
  }
}
const text:string = 'Hello, world!';
Console.log(text);
{
	text: 'Hello world!'
}
int main() {
    printf("Hello World");
    return 0;
}
int main() 
{
    printf("Hello World");
    return 0;
}
int main()
{
    printf("Hello World");
    return 0;
}
static void Main(string[] args) 
{
	Console.WriteLine("Hello World!");
}
class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello, World!"); 
    }
}
import "fmt"

func main() {
    fmt.Println("hello world")
}
print('Hello world!')
x = 'Hello, world'
print(x)
text = 'Hello, world!'
puts text
fn main() { 
	println!("Hello, world!"); 
}
<div>
	Hello, world!
</div>
<text><para>hello world</para></text>
# Hello, world!
.hello__world {
	content: 'Hello, world!';
}
@hello-world { 
	content: 'Hello, world!';
}
text: 'Hello, world!';
@mixin hello-world {
	content: $text;
}
SELECT * 
FROM myTable
WHERE phrase = "Hello, World!";
$ echo '#!/bin/sh' > my-script.sh
$ echo 'echo Hello World' >> my-script.sh
$ chmod 755 my-script.sh
$ ./my-script.sh
Hello World
echo Hello World
console -> print 'unknown lang'.