Skip to content

Instantly share code, notes, and snippets.

View paulocuambe's full-sized avatar
🚀
Bezalel

gosenx paulocuambe

🚀
Bezalel
View GitHub Profile
@paulocuambe
paulocuambe / singly_linked_list.zig
Created October 10, 2023 19:21
Basic SinglyLinkedList using structs
const std = @import("std");
const stdout = std.io.getStdOut().writer();
const Node = struct {
value: i8,
next: ?*Node = null,
pub fn addAfter(self: *Node, node: *Node) void {
node.next = self;
}
@paulocuambe
paulocuambe / console_dump
Last active October 10, 2023 19:33
Error happening on ACG
RFC 791