From f918675c8b11adb80a83000a3a984e4ff3bdcf1b Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 23 Oct 2016 19:45:36 -0700 Subject: 3569 Update syntax highlighting to not color numeric locations like literals. --- html/static-dispatch.mu.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'html/static-dispatch.mu.html') diff --git a/html/static-dispatch.mu.html b/html/static-dispatch.mu.html index 2797735b..6b69da47 100644 --- a/html/static-dispatch.mu.html +++ b/html/static-dispatch.mu.html @@ -31,22 +31,22 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color def test a:num -> b:num [ local-scope load-ingredients - b <- add a, 1 + b <- add a, 1 ] def test a:num, b:num -> c:num [ local-scope load-ingredients - c <- add a, b + c <- add a, b ] def main [ local-scope - a:num <- test 3 # selects single-ingredient version + a:num <- test 3 # selects single-ingredient version $print a, 10/newline - b:num <- test 3, 4 # selects double-ingredient version + b:num <- test 3, 4 # selects double-ingredient version $print b, 10/newline - c:num <- test 3, 4, 5 # prefers double- to single-ingredient version + c:num <- test 3, 4, 5 # prefers double- to single-ingredient version $print c, 10/newline ] -- cgit 1.4.1-2-gfad0