Minis (not worky)

This commit is contained in:
2026-02-03 17:17:15 +01:00
parent b508c5178d
commit 4bb1c1b97f
3 changed files with 8 additions and 8 deletions

View File

@@ -18,6 +18,7 @@ Dont just delete them. They may be useful when you pick the language up again.
## Binaries ## Binaries
Needed binaries for full support of everything. Needed binaries for full support of everything.
Install `julia` with `juliaup` and install that with `cargo`.
``` ```
typst typst

View File

@@ -5,11 +5,10 @@
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
}; };
outputs = { self, nixpkgs }: { outputs =
{ self, nixpkgs }:
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello; {
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
packages.x86_64-linux.default = self.packages.x86_64-linux.hello; packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
};
};
} }

View File

@@ -73,7 +73,7 @@ function get_points()::PointStack
points::PointStack = Vector() points::PointStack = Vector()
while true while true
point::MaybePoint = read_point() point::MaybePoint = read_point()
if point == nothing if isnothing(point)
return points return points
end end
push!(points, point) push!(points, point)