Skip to content

Commit

Permalink
More text, outline of further writing.
Browse files Browse the repository at this point in the history
  • Loading branch information
bediger4000 committed Jun 16, 2017
1 parent 13aa147 commit 8ed7608
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,31 @@
# kilo text editor in Golang

[Build Your Own Text Editor](https://viewsourcecode.org/snaptoken/kilo/index.html)
only in Go instead of C.
I did [Build Your Own Text Editor](https://viewsourcecode.org/snaptoken/kilo/index.html)
only in Go instead of C. I tried to keep the spirit of `kilo`: a single
file of source code, everything as simple as possible.

I tried to check in after completing each step, but
sometimes I combined a few steps, or fixed bugs between
steps.

# Compare C and Go

I have some experience with C, but I'm learning Go. I'd like
to use this project to compare the two languages, as well as
to internalize Go.

Using [sloccount](???)

CKilo: 971 lines of ANSI C
GoKilo: sloccount doesn't work

## Better

Go's `range` operator made most iterations much simpler.

Go's standard packages had a type `bytes.Buffer` that
replaced `struct ab` in the C version.

## Worse

## Just Different

0 comments on commit 8ed7608

Please sign in to comment.