index : Nim | |
This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror) | ahoang <ahoang@tilde.institute> |
summary refs log tree commit diff stats |
discard """
output: '''true'''
"""
# Just check that we can parse 'somesql' and render it without crashes.
import parsesql, streams, os
var tree = parseSql(newFileStream(parentDir(currentSourcePath) / "somesql.sql"), "somesql")
discard renderSql(tree)
echo "true"