Skip to content

Commit 52b9456

Browse files
committed
First draft structure
1 parent 799ede0 commit 52b9456

File tree

10 files changed

+46
-3
lines changed

10 files changed

+46
-3
lines changed

docs/concurrency/main.adoc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
== Concurrent Programming
2+

docs/errors/exceptions.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
=== Exceptions

docs/errors/functional.adoc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
=== Functional Errors
2+

docs/errors/main.adoc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
== Error Handling
2+
3+
In this chapter, we will deal with the several ways to deal with errors in Golo.
4+
5+
include::exceptions.adoc[]
6+
include::functional.adoc[]

docs/java-interaction/.main.adoc.swp

12 KB
Binary file not shown.

docs/java-interaction/main.adoc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
== Interacting With Java
2+
3+
=== Using Java Classes in Golo Code
4+
5+
=== Adapters
6+
7+
=== Java 8 Lambda, Functional Interface, Single Abstract Method Type and Golo Function
8+
9+
=== Using Golo Code in Java

docs/main.adoc

+10-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,15 @@
44
:data-uri:
55
:toc: left
66
:numbered:
7-
:stylesheet: readthedocs.css
8-
:source-highlighter: highlightjs
9-
:highlightjsdir: .
107

8+
include::preface.adoc[]
119

10+
include::starting/main.adoc[]
11+
12+
include::java-interaction/main.adoc[]
13+
14+
include::errors/main.adoc[]
15+
16+
include::concurrency/main.adoc[]
17+
18+
include::testing/main.adoc[]

docs/preface.adoc

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
== Preface
2+
3+
=== About This Book
4+
5+
=== Audience
6+
7+
=== Helpful Resources
8+
9+
=== Code Examples
10+
11+
=== How to Contact Us
12+
13+
=== Acknowledgments
14+

docs/starting/main.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
== Getting Started

docs/testing/main.adoc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
== Testing

0 commit comments

Comments
 (0)