Code Samples
- JavaScript
- Python
- Java
- PHP
function helloWorld() {
const apiKey = ""
console.log('Hello, world!');
}
def hello_world():
apiKey = ""
print("Hello, world!")
class HelloWorld {
private final String apiKey = "";
public static void main(String args[]) {
System.out.println("Hello, World");
}
}
<?php
$apiKey = "";
echo "Hello World";
>