I’m only trying to say hello. Well, here we go. :trollface:
Python:
print('Hello, world!')
Ruby:
puts "Hello, world!"
PHP:
echo "Hello, world!";
Java:
public static void main(String[] args) {
System.IO.println("Hello, world!");
}
VB:
Module Main
Sub Main(args as String())
Console.WriteLine("Hello, world!")
End Sub
End Module
C#:
class Main {
[STAThread]
public static void Main(string[] args)
{
Console.WriteLine("Hello, world!");
}
}
JavaScript:
console.log('Hello, world!');