Skip to content

Commit

Permalink
Small doc updates
Browse files Browse the repository at this point in the history
  • Loading branch information
olonho committed Mar 27, 2017
1 parent a6656a0 commit 8467fab
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
6 changes: 3 additions & 3 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ between threads are allowed.

Download Kotlin N redistributable and unpack it. You can run command line compiler with

./dist/bin/kotlinc <some_file>.kt <dir_with_kt_files> -o <executable>.kexe
bin/kotlinc <some_file>.kt <dir_with_kt_files> -o <executable>.kexe

During the first run it will download all external dependencies such as LLVM.
During the first run it will download all the external dependencies, such as LLVM.

One may use `'-h'` flag to `kotlinc` to see available flags.

Expand Down Expand Up @@ -81,4 +81,4 @@ Notice that property delegation (including lazy properties) *does* work.

Due to significant difference in exception handling model on MS Windows and
other LLVM targets, current _Kotlin N_ may not produce executables working on
MS Windows. This situation could be improved in upcoming releases.
MS Windows. This situation could be improved in upcoming releases.
12 changes: 12 additions & 0 deletions samples/opengl/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# OpenGL application

This example shows interaction with OpenGL library, to render classical 3D test model.

To build use `./build.sh` script without arguments (or specify `TARGET` variable if cross-compiling).

To run use

./OpenGlTeapot.kexe

It will render 3D model of teapot. Feel free to experiment with it, the whole power of OpenGL
is at your hands.
18 changes: 18 additions & 0 deletions samples/socket/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Sockets demo

Compile the echo server (in EAP only supported on Mac host):

./build.sh

Run the server:

./EchoServer.kexe 3000 &

Test the server by conecting to it, for example with telnet:

telnet localhost 3000

Write something to console and watch server echoing it back.

~~Quit telnet by pressing ctrl+] ctrl+D~~

2 changes: 1 addition & 1 deletion samples/tetris/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Tetris game
# Tetris game

This example shows implementation of simple Tetris game using SDL
(Simple DirectMedia Layer) library for rendering. SDL allows easy development
Expand Down

0 comments on commit 8467fab

Please sign in to comment.