Showing posts with label Programming language. Show all posts
Showing posts with label Programming language. Show all posts

Monday, June 11, 2012

TextWrangler


TextWrangler is the powerful general purpose text editor, and Unix and server administrator’s tool. Essentially, it is a free version of BBEdit (see below). It offers a broad range of support for different programming languages, and fantastic find and replace functionality. A reliable and powerful tool, especially considering its freeware status. (via appstorm.net). Requires: Mac OS X 10.4 or later. Alternatives: eMacsSmultron, TextEdit (native Mac-app).

Screenshot

Tuesday, May 29, 2012

"Go" Language Tutorial-1

Welcome to a tour of the Go programming language.

The tour is divided into three sections. At the end of each section is a series of exercises for you to complete.

The tour is interactive. Click the Run button now (or type Shift-Enter) to compile and run the program on a remote server. The result is displayed below the code.

These example programs demonstrate different aspects of Go. The programs in the tour are meant to be starting points for your own experimentation.

Edit the program and run it again.

Whenever you're ready to move on, click the Next button or type the PageDown key.

 

Example:

package main

import "fmt"

func main() {
fmt.Println("Hello, 世界")
}

output :
Hello, 世界