stefan

12 posts

Hello World

This is my first post. So inorder to test out blogger I am going to post some hello world programs! Java public class Hello { public static void main(String args[]) { System.out.println(“Hello World!”); } } Python print(“Hello World!”) Php echo “Hello World” C++ #include <stdio.h> using namespace std; int main(void) […]