Most awaited Red Hat Fedora core 12 is now available for your personal computer. Fedora 12 has many new features like XZ compression rather than earlier gunzip. XZ compression scheme provide you with smaller packages and faster download feature.Apart from speedy update support, Fedora 12 has added features for blue tooth technology, virtualization, graphics and bug reporting.
Download Free :
http://fedoraproject.org/get-fedora
Tuesday, November 17, 2009
Thursday, November 12, 2009
Go System Programming Language
Google has changed the way of thinking about system programming. Google software engineers have finally made system programming in the palm of all men. Go programming language is open source that is robustly typed and garbage collected that also support concurrency programming. Implementation of Go programming language uses traditional compile/build model and faster than c, c++ code execution time. Pointers, structures, identifiers are included in a new and easy way in GO programming. Go has removed the limitation of C and C++ traditional system programming languages. For example:
package main
import "fmt"
func main() {
fmt.Printf("Hello, 世界\n")
}
There are same comment formats as in C and C++
//this is comment line
/* this is also same
As we used before in c , c++ */
For more details visit :
http://golang.org/
OR Watch This :
http://www.youtube.com/watch?v=wwoWei-GAPo
package main
import "fmt"
func main() {
fmt.Printf("Hello, 世界\n")
}
There are same comment formats as in C and C++
//this is comment line
/* this is also same
As we used before in c , c++ */
For more details visit :
http://golang.org/
OR Watch This :
http://www.youtube.com/watch?v=wwoWei-GAPo