This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/generated-builtin/Projection.swift b/generated-builtin/Projection.swift | |
index 6f259ab..2141aa9 100644 | |
--- a/generated-builtin/Projection.swift | |
+++ b/generated-builtin/Projection.swift | |
@@ -24,12 +24,12 @@ public struct Projection: Equatable, Hashable, GodotVariant { | |
public var z: Vector4 | |
public var w: Vector4 | |
public enum Planes: Int { | |
- case planeNear = 0 // PLANE_NEAR | |
- case planeFar = 1 // PLANE_FAR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns bird-watcher) | |
(def last-week [0 2 5 3 7 8 4]) | |
(defn today [birds] | |
(last birds)) | |
(defn safe-last-index [v] | |
(if (empty? v) | |
nil ; or some appropriate value |
OlderNewer