9 lines
137 B
Plaintext
9 lines
137 B
Plaintext
type storage = unit;
|
|
|
|
let main = (p: unit, storage) =>
|
|
if (true) {
|
|
failwith("This contract always fails");
|
|
} else {
|
|
();
|
|
};
|