cleanup
This commit is contained in:
parent
12dc33b5db
commit
a9c8e49631
3 changed files with 1 additions and 49 deletions
8
blog.md
8
blog.md
|
|
@ -1,8 +0,0 @@
|
|||
## My Blogpost 1 - wholesome
|
||||
wuhp
|
||||
|
||||
## My blogpost 2 - sadge
|
||||
bubglub
|
||||
|
||||

|
||||
|
||||
40
main.zig
40
main.zig
|
|
@ -1,40 +0,0 @@
|
|||
const std = @import("std");
|
||||
pub fn main(init: std.process.Init) !void {
|
||||
const xdxdx = try std.Io.Dir.readFileAlloc(std.Io.Dir.cwd(), init.io, "main.zig", init.gpa, .unlimited);
|
||||
defer init.gpa.free(xdxdx);
|
||||
std.debug.print("morbius {s} {s}\n", .{xdxdx, "morbius"});
|
||||
switch (f(.blub)) {
|
||||
.hop => {},
|
||||
.jobb => {},
|
||||
}
|
||||
const heee = h();
|
||||
std.debug.print("{any}\n", .{heee});
|
||||
var huhhh: std.ArrayList(u18) = .empty;
|
||||
defer huhhh.deinit(init.gpa);
|
||||
try huhhh.append(init.gpa, 3333);
|
||||
const Vec3 = @Vector(3, u4);
|
||||
const a: Vec3 = .{3, 4, 5};
|
||||
//const b: Vec3 = .{3, 4, 5};
|
||||
std.debug.print("{any}", .{@reduce(.Add, a)});
|
||||
//inline for (.{Gloob {}, Gleeeb {}}) |v| {
|
||||
// v.morbiusss();
|
||||
//}
|
||||
}
|
||||
|
||||
//const Gloob = struct {
|
||||
// fn morbiusss( self: @This ) void {
|
||||
// }
|
||||
//};
|
||||
const Gleeeb = struct {
|
||||
fn morbiusss() void {
|
||||
}
|
||||
};
|
||||
|
||||
fn h() [4]u8 {
|
||||
return .{3,4,2,1};
|
||||
}
|
||||
|
||||
fn f(x: enum { glob, blub }) enum { hop, jobb } {
|
||||
_ = x;
|
||||
return .jobb;
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
use std::io;
|
||||
use markdown::to_html;
|
||||
use rss::{Channel, Item, ItemBuilder};
|
||||
use rss::{Channel, ItemBuilder};
|
||||
|
||||
fn main() -> io::Result<()> {
|
||||
let posts = std::env::args().skip(2).map(|f| {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue