From 6ded65f45f633637de853b4e0b483080050394ca Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Fri, 15 Feb 2019 00:01:51 -0800 Subject: 4969 --- subx/apps/pack.subx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subx/apps/pack.subx b/subx/apps/pack.subx index a27d2613..cf0a27d7 100644 --- a/subx/apps/pack.subx +++ b/subx/apps/pack.subx @@ -200,10 +200,10 @@ $convert:end: convert-instruction: # line : (address stream byte), out : (address buffered-file) -> # pseudocode: # word-slice = next-word - # if (*word-slice->start == '#') + # if (slice-starts-with?(word-slice, '#')) # write-stream-buffered(out, line) # return - # if (starts-with(word-slice, '==')) + # if (slice-starts-with?(word-slice, '==')) # write-stream-buffered(out, line) # return # -- cgit 1.4.1-2-gfad0 td>
summary refs log tree commit diff stats
blob: 8f176aba5d873637909a4598914674db7501b575 (plain) (blame)
1
2
3
4
5
6
7
package main

import "github.com/getwtxt/getwtxt/svc"

func main() {
	svc.Start()
}