Minis (not worky)
This commit is contained in:
@@ -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
|
||||||
|
|||||||
13
flake.nix
13
flake.nix
@@ -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;
|
||||||
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user