samples: remove receiver.do, fix usable.do

This commit is contained in:
2025-11-04 09:17:12 -05:00
parent 82ec6770c8
commit 2e5cd3029f
2 changed files with 1 additions and 60 deletions

View File

@@ -1,6 +1,6 @@
//! Sample doughlang code
struct Expr {
enum Expr {
Atom (f64),
Op (char, [Expr]),
}