src/main.rs

changeset 4
e09437844ad9
parent 1
29738fae471e
child 5
f248e1434c3b
--- a/src/main.rs	Fri Oct 18 14:22:45 2024 -0500
+++ b/src/main.rs	Fri Oct 18 19:52:06 2024 -0500
@@ -1,5 +1,12 @@
+
+// We use unicode. We would like to use much more of it than Rust allows.
+// Live with it. Embrace it.
+#![allow(uncommon_codepoints)]
+#![allow(mixed_script_confusables)]
+#![allow(confusable_idents)]
 
 mod manifold;
+mod fb;
 mod cube;
 
 fn main() {

mercurial