From 6e6cd2f6ff9fdec9c1e5dec3d1f82e49d820f497 Mon Sep 17 00:00:00 2001 From: araq Date: Thu, 22 Jan 2026 09:02:50 +0100 Subject: [PATCH] IC: progress --- tests/ic/tparseutils.nim | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/ic/tparseutils.nim diff --git a/tests/ic/tparseutils.nim b/tests/ic/tparseutils.nim new file mode 100644 index 0000000000..bf977b94ee --- /dev/null +++ b/tests/ic/tparseutils.nim @@ -0,0 +1,10 @@ +discard """ + output: '''hello''' +""" + +import parseutils + +var w = "" +discard parseIdent("hello world", w) +echo w +