torq_lang 0.1.2

A programming language for concurrent dataflow.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2024 Torqware LLC. All rights reserved.
 *
 * You should have received a copy of the Torq Lang License v1.0 along with this program.
 * If not, see http://torq-lang.github.io/licensing/torq-lang-license-v1_0.
 */

struct Machine {}

impl Machine {}

enum ComputeAdvice {
    Preempt,
    Wait,
    Halt,
    Finish,
}