summaryrefslogtreecommitdiff
path: root/test.toc
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-05-03 23:36:43 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2020-05-03 23:36:43 -0400
commitb20ccd6bafaa12acacff8b75a666d3ac51eda371 (patch)
tree855307cd2082be730d074dcd24aff4951133ae48 /test.toc
parentb11937fc35264180f15b31fedbab56724d2fadfa (diff)
better unrecognized expression error message
Diffstat (limited to 'test.toc')
-rw-r--r--test.toc41
1 files changed, 3 insertions, 38 deletions
diff --git a/test.toc b/test.toc
index 281446d..c57996e 100644
--- a/test.toc
+++ b/test.toc
@@ -1,39 +1,4 @@
-// BUGBUGBUG: puti(puti(x))
+main ::=fn(){
-printf ::= #foreign("printf","libc.so.6") fn(#C &"const char", #C ..) #C int;
-
-
-// NOTE: this doesn't work (e.g. "%%%")
-tprintf_valid ::= fn(fmt :: []char, nargs: int) bool {
- if fmt[fmt.len-1] != '\0' {
- return false;
- }
- count := 0;
- for x, i := fmt {
- if x == '%' {
- if i == fmt.len-1 {
- count += 1;
- } elif fmt[i+1] != '%' {
- count += 1;
- } else {
- count -= 1;
- }
- }
- }
- count == nargs
-};
-
-
-tprintf ::= fn(fmt :: []char, args: ..) {
- #if !tprintf_valid(fmt, args.len) {
- #error "Invalid printf format";
- }
- f := fmt;
- printf(&f[0], args);
-};
-
-main ::= fn() {
- tprintf("%d %d%%\n\0", 3 as #C int, 4 as #C int);
- tprintf("%d %d %d%%\n\0", 3 as #C int, 4 as #C int, 5 as #C int);
- tprintf("Hello!\n\0");
-};
+ yeoop #C 3;
+}