Compare commits
No commits in common. "e83052f06d0fe812d8152d3013f503e7386eb545" and "ea9fa52a381e0d57b0c3f50b335bdd71bc1f996d" have entirely different histories.
e83052f06d
...
ea9fa52a38
12
README.md
12
README.md
|
@ -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.
|
|
|
@ -11,8 +11,8 @@ pub fn main() anyerror!void {
|
||||||
while (true) {
|
while (true) {
|
||||||
|
|
||||||
var input = prompt.readline("topiku> ") orelse break;
|
var input = prompt.readline("topiku> ") orelse break;
|
||||||
defer prompt.free(input);
|
defer std.c.free(&input);
|
||||||
|
|
||||||
try stdout.print(">>> {s}\n", .{input});
|
try stdout.print(">>> {s}\n", .{input});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,11 +5,8 @@ const ceditline = @cImport({
|
||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const io = std.io;
|
const io = std.io;
|
||||||
|
|
||||||
const __sighandler = ?fn (c_int) callconv(.C) void;
|
pub fn readline(prompt: [*c]const u8) ?[]u8 {
|
||||||
extern fn signal(sig: c_int, handler: __sighandler) __sighandler;
|
var line = ceditline.readline(@as([*c]const u8, prompt));
|
||||||
|
|
||||||
pub fn readline(prompt: []const u8) ?[]u8 {
|
|
||||||
var line = ceditline.readline(@as([*c]const u8, prompt.ptr));
|
|
||||||
if (line == 0) {
|
if (line == 0) {
|
||||||
std.c.free(line);
|
std.c.free(line);
|
||||||
return null;
|
return null;
|
||||||
|
@ -17,18 +14,8 @@ pub fn readline(prompt: []const u8) ?[]u8 {
|
||||||
return std.mem.sliceTo(line, 0);
|
return std.mem.sliceTo(line, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn free(slice: []u8) void {
|
|
||||||
std.c.free(slice.ptr);
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn init() void {
|
pub fn init() void {
|
||||||
ceditline.rl_initialize();
|
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 {
|
pub fn deinit() void {
|
||||||
|
|
Loading…
Reference in a new issue