futilehdl/doc/examples/identity.fut

7 lines
59 B
Plaintext
Raw Normal View History

2022-01-04 00:41:09 +00:00
module identity (
2022-02-02 00:13:33 +00:00
a: Logic
) -> Logic
2022-01-04 00:41:09 +00:00
{
assign x = a;
}