From cf0a1c34c2cc1b8a49a9730f7089b3481826afaf Mon Sep 17 00:00:00 2001 From: robin Date: Thu, 21 Aug 2025 15:06:51 +0200 Subject: [PATCH] NoBuild in Kotlin I got inspired by your nob.h and decided to make one for Kotlin. It backups the last working version and restores it when necessary. Im not packaging a jar or compiling a native executable, only compiling the class files, this makes the whole build time a lot faster. It also uses a Kotlin daemon for having a live compiler environment for faster subsequent builds. A simple "Hello world" now compiles in 70ms. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7e10f99..12c9275 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,7 @@ This is obviously applicable not only to C. You can implement the same kind of a - C++ - [https://github.com/zhiayang/nabs](https://github.com/zhiayang/nabs) - Java - [https://gitlab.com/NikaDev/arris](https://gitlab.com/NikaDev/arris) +- Kotlin - [https://github.com/rtc11/nob.kt](https://github.com/rtc11/nob.kt) - ... *Feel free to contribute more*