HelloWorld.sh
#!/bin/sh echo Hello World!Create a Document > Empty File > Copy and Paste > File > Save As or rename > (file).sh
sh file.sh
#!/bin/sh echo Hello World!Create a Document > Empty File > Copy and Paste > File > Save As or rename > (file).sh
@echo off echo HelloWorld! pause exitCreate a Text Document > Copy and Paste > File > Save As > (name).bat
http://www.palaestratraining.com/blog/2008/07/firefox-3-make-older-add-ons-to-work/ http://kb.mozillazine.org/Install.rdf
#include <stdio.h> int main() { printf("Hello world!\n"); }
public class HelloWorld { public static void main(String[] args) { System.out.println("HelloWorld"); } }