6 lines
89 B
Python
6 lines
89 B
Python
|
|
import unittest
|
||
|
|
|
||
|
|
from forth import evaluate
|
||
|
|
|
||
|
|
class ForthTest(unittest.TestCase):
|
||
|
|
pass
|