11 lines
294 B
Plaintext
11 lines
294 B
Plaintext
-- Source-level View Contract syntax sugar demo.
|
|
-- Run with: tricu check demos/viewContracts/sourceSyntax/success.tri
|
|
|
|
message =@String "hello"
|
|
|
|
boxedMessages =@(Maybe (List String)) just [(message) ("world")]
|
|
|
|
chooseFirst x@String y@Byte =@String x
|
|
|
|
fromLambda =@(Fn [String] String) (x : x)
|