~deciduously/nlox

ea8f8a1b83409bddef7ded4e68276ba88e02eee3 — Ben Lovy 2 years ago 06ea1a6
s/treewalkpkg/nloxpkg/g
3 files changed, 2 insertions(+), 2 deletions(-)

M src/nlox.nim
R src/{treewalkpkg/lox.nim => nloxpkg/lox.nim}
M tests/test1.nim
M src/nlox.nim => src/nlox.nim +1 -1
@@ 1,7 1,7 @@
# This is just an example to get you started. A typical hybrid package
# uses this file as the main entry point of the application.

import treewalkpkg/lox
import nloxpkg/lox

when isMainModule:
  run()

R src/treewalkpkg/lox.nim => src/nloxpkg/lox.nim +0 -0
M tests/test1.nim => tests/test1.nim +1 -1
@@ 7,6 7,6 @@

import unittest

import treewalkpkg/lox
import nloxpkg/lox
test "correct usage message":
  check usage == "Usage: nlox [script]"