[Pleac-commits] CVS: pleac/pleac pleac_go.data, NONE, 1.1 Makefile, 1.68, 1.69
Status: Alpha
Brought to you by:
ggc
From: Guillaume C. <gg...@us...> - 2011-01-02 13:53:32
|
Update of /cvsroot/pleac/pleac/pleac In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv18000 Modified Files: Makefile Added Files: pleac_go.data Log Message: add beginning of Go --- NEW FILE: pleac_go.data --- // -*- go -*- // @@PLEAC@@_NAME // @@SKIP@@ Go // @@PLEAC@@_WEB // @@SKIP@@ http://golang.org/ // @@PLEAC@@_INTRO // @@SKIP@@ The Go programming language is an open source project to make programmers more productive. Go is expressive, concise, clean, and efficient. Its concurrency mechanisms make it easy to write programs that get the most out of multicore and networked machines, while its novel type system enables flexible and modular program construction. Go compiles quickly to machine code yet has the convenience of garbage collection and the power of run-time reflection. It's a fast, statically typed, compiled language that feels like a dynamically typed, interpreted language. // @@PLEAC@@_1.0 string1 := "\\n" // two characters, \ and an n string2 := "Jon 'Maddog' Orwant" // literal single quotes string3 := "Jon \"Maddog\" Orwant" // literal double quotes fmt.Println(string1) fmt.Println(string2) fmt.Println(string3) // There is no here-doc in Go. Index: Makefile =================================================================== RCS file: /cvsroot/pleac/pleac/pleac/Makefile,v retrieving revision 1.68 retrieving revision 1.69 diff -u -r1.68 -r1.69 --- Makefile 2 Jul 2010 11:27:56 -0000 1.68 +++ Makefile 2 Jan 2011 13:53:22 -0000 1.69 @@ -19,7 +19,7 @@ #***************************************************************************** # IMPLS must be sorted by percentage of completion -IMPLS = perl groovy ocaml python ruby guile commonlisp rexx tcl php pike haskell merd ada haskell-on-steroids java cposix pliant c++ factor smalltalk forth erlang R objective-c masd nasm +IMPLS = perl groovy ocaml python ruby guile commonlisp rexx tcl php pike haskell merd ada haskell-on-steroids java cposix pliant c++ factor smalltalk forth erlang R objective-c masd nasm go DATAFILES = $(wildcard pleac_*.data) |