Compare commits

..

No commits in common. "e83052f06d0fe812d8152d3013f503e7386eb545" and "ea9fa52a381e0d57b0c3f50b335bdd71bc1f996d" have entirely different histories.

3 changed files with 4 additions and 29 deletions

View file

@ -1,12 +0,0 @@
# topiku
topiku is a simple [LISP](https://en.wikipedia.org/wiki/Lisp_(programming_language)) inspired language with [toki pona](https://tokipona.org/) keywords
## Building
To build `topiku` interpreter you need a [Zig](https://ziglang.org/) compiler (works with `master`) and [`editline`](https://github.com/troglobit/editline) installed.
```sh
> git clone https://git.ablecorp.us:443/der-teufel-programming/topiku.git
> cd topiku
> zig build
```
The executable is then found as `zig-out/bin/topiku`
It is also possible to build and run using `zig build run` command.

View file

@ -11,8 +11,8 @@ pub fn main() anyerror!void {
while (true) {
var input = prompt.readline("topiku> ") orelse break;
defer prompt.free(input);
defer std.c.free(&input);
try stdout.print(">>> {s}\n", .{input});
}
}

View file

@ -5,11 +5,8 @@ const ceditline = @cImport({
const std = @import("std");
const io = std.io;
const __sighandler = ?fn (c_int) callconv(.C) void;
extern fn signal(sig: c_int, handler: __sighandler) __sighandler;
pub fn readline(prompt: []const u8) ?[]u8 {
var line = ceditline.readline(@as([*c]const u8, prompt.ptr));
pub fn readline(prompt: [*c]const u8) ?[]u8 {
var line = ceditline.readline(@as([*c]const u8, prompt));
if (line == 0) {
std.c.free(line);
return null;
@ -17,18 +14,8 @@ pub fn readline(prompt: []const u8) ?[]u8 {
return std.mem.sliceTo(line, 0);
}
pub fn free(slice: []u8) void {
std.c.free(slice.ptr);
}
pub fn init() void {
ceditline.rl_initialize();
_ = signal(std.os.SIG.INT, exit);
}
fn exit(_ : c_int) callconv(.C) void {
deinit();
std.os.exit(0);
}
pub fn deinit() void {