The Unified Theory of Ram Dass
gq.com97 ポイント投稿者 adrice72781 コメント
address my issues with the platform
What are your issues? What could Substack be doing better for fiction writers? . . . which they describe as a profoundly nihilist state of being
Where are you getting this from? I don't know of any traditions that would describe it in this way. interface Tagged {
tag: string;
}
interface Circle extends Tagged {
tag: 'circle'
}
// ... Other implementations
switch (myShape.tag) {
case 'circle': {
// Do circular things
}
// etc . . .
}
You'll occasionally even see this in Scala code, since the @switch annotation optimizes pattern-match statements[2].