+++ /dev/null
-package main
-
-import "fmt"
-
-func say(msg string) {
- fmt.Println(msg)
-}
-
-func main() {
- say("Hello, Emacs!")
-}
+++ /dev/null
-package main
-
-import "fmt"
-
-type plus interface {
- PrintAdd()
-}
-
-type str struct {
- a, b string
-}
-
-type intNumber struct {
- a, b int
-}
-
-func (s str) PrintAdd() {
- fmt.Println(s.a + s.b)
-}
-
-func (n intNumber) PrintAdd() {
- fmt.Println(n.a + n.b)
-}
-
-func test(p plus) {
- p.PrintAdd()
-}
-
-func main() {
- s := str{a: "Hello,", b: "Emacs!"}
- number := intNumber{a: 1, b: 2}
- test(number)
- test(s)
-}
+++ /dev/null
-class A
- def a()
- super(" do ")
- end
- def b()
- end
-end
-
-module A
- class B
- ABC = 4
- Def_ = 'blah'
- Xyzzy =10
-
- def foo!
- end
-
- def self._bar?(abc)
- end
-
- class << self
- def qux=(tee)
- end
- end
-
- attr_reader :foo
- attr_reader :read1 , :read2; attr_writer :write1, :write2
- attr_writer :bar,
- :baz,
- :more
- attr_accessor :tee
- alias_method :qux, :tee, attr_accessor(:bogus)
- alias_method :xyz,
- :tee ; attr_reader :subtle
- attr_reader(:foo1, :bar1, # comment
- :qux1)
- alias_method ( :foo2, #cmmt
- :bar2)
- end
-end
-
-A::Constant = 5
-
-# def foo_in_comment
-# end
--- /dev/null
+package main
+
+import "fmt"
+
+func say(msg string) {
+ fmt.Println(msg)
+}
+
+func main() {
+ say("Hello, Emacs!")
+}
--- /dev/null
+package main
+
+import "fmt"
+
+type plus interface {
+ PrintAdd()
+}
+
+type str struct {
+ a, b string
+}
+
+type intNumber struct {
+ a, b int
+}
+
+func (s str) PrintAdd() {
+ fmt.Println(s.a + s.b)
+}
+
+func (n intNumber) PrintAdd() {
+ fmt.Println(n.a + n.b)
+}
+
+func test(p plus) {
+ p.PrintAdd()
+}
+
+func main() {
+ s := str{a: "Hello,", b: "Emacs!"}
+ number := intNumber{a: 1, b: 2}
+ test(number)
+ test(s)
+}
--- /dev/null
+class A
+ def a()
+ super(" do ")
+ end
+ def b()
+ end
+end
+
+module A
+ class B
+ ABC = 4
+ Def_ = 'blah'
+ Xyzzy =10
+
+ def foo!
+ end
+
+ def self._bar?(abc)
+ end
+
+ class << self
+ def qux=(tee)
+ end
+ end
+
+ attr_reader :foo
+ attr_reader :read1 , :read2; attr_writer :write1, :write2
+ attr_writer :bar,
+ :baz,
+ :more
+ attr_accessor :tee
+ alias_method :qux, :tee, attr_accessor(:bogus)
+ alias_method :xyz,
+ :tee ; attr_reader :subtle
+ attr_reader(:foo1, :bar1, # comment
+ :qux1)
+ alias_method ( :foo2, #cmmt
+ :bar2)
+ end
+end
+
+A::Constant = 5
+
+# def foo_in_comment
+# end
+++ /dev/null
-class A
- def a()
- super(" do ")
- end
- def b()
- end
-end
-
-module A
- class B
- ABC = 4
-
- def foo!
- end
-
- def self._bar?(abc)
- end
-
- class << self
- def qux=(tee)
- end
- end
- end
-end
-
-A::Constant = 5
-
-# def foo_in_comment
-# end