Skip to content

Instantly share code, notes, and snippets.

View jonathanderque's full-sized avatar

Jonathan Derque jonathanderque

View GitHub Profile
@jonathanderque
jonathanderque / test_runner.zig
Created September 4, 2025 09:51
Custom Zig Test Runner (zig 0.15 version)
// This is for the stable version of Zig (0.15.1)
// Adapted from (0.14.1 version): https://gist.github.com/karlseguin/c6bea5b35e4e8d26af6f81c22cb5d76b
// Changed Sep 04, 2025 to accomodate latest Zig changes
// See history if you're using an older version of Zig.
// in your build.zig, you can specify a custom test runner:
// const tests = b.addTest(.{
// .target = target,
// .optimize = optimize,
// .test_runner = .{ .path = b.path("test_runner.zig"), .mode = .simple }, // add this line
PL-SQL
-----------------------------------------------------------------
General
Be able to define a declare/begin/end block
DECLARE
a integer := 30;