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
|
||||
|
||||
Needed binaries for full support of everything.
|
||||
Install `julia` with `juliaup` and install that with `cargo`.
|
||||
|
||||
```
|
||||
typst
|
||||
|
||||
13
flake.nix
13
flake.nix
@@ -5,11 +5,10 @@
|
||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs }: {
|
||||
|
||||
packages.x86_64-linux.hello = nixpkgs.legacyPackages.x86_64-linux.hello;
|
||||
|
||||
packages.x86_64-linux.default = self.packages.x86_64-linux.hello;
|
||||
|
||||
};
|
||||
outputs =
|
||||
{ self, nixpkgs }:
|
||||
{
|
||||
packages.x86_64-linux.hello = nixpkgs.legacyPackages.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()
|
||||
while true
|
||||
point::MaybePoint = read_point()
|
||||
if point == nothing
|
||||
if isnothing(point)
|
||||
return points
|
||||
end
|
||||
push!(points, point)
|
||||
|
||||
Reference in New Issue
Block a user