diff options
| author | 2022-08-29 08:17:03 +0200 | |
|---|---|---|
| committer | 2022-08-29 09:03:36 +0200 | |
| commit | a984cedd59c5dc290b896e4b8743f771df31e1bd (patch) | |
| tree | 232d8a35f0d3bb8ce57ac2f6c2fb620615a5044f /bootstrap/test2.cff | |
| parent | 6aeb4e79bf92863a3b5d41b22db71cf342c9b54e (diff) | |
add type, multiline strings
Diffstat (limited to 'bootstrap/test2.cff')
| -rw-r--r-- | bootstrap/test2.cff | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bootstrap/test2.cff b/bootstrap/test2.cff index f5dec29..c9ef3c9 100644 --- a/bootstrap/test2.cff +++ b/bootstrap/test2.cff @@ -82,7 +82,9 @@ extern fn main() void { } printf("n %d\n", n.value); - printf("n link %d\n", n.link.value); + printf("n li" + "nk %d\n", n.link.value); + let x Node<f32> = {}; n->ok(); |