mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
7061c79c22
- python now mixes audio 10x faster - python octal notation is restored - chibicc now builds code 3x faster - chibicc now has help documentation - chibicc can now generate basic python bindings - linenoise now supports some paredit-like features See #141
17 lines
269 B
Python
17 lines
269 B
Python
import os
|
|
import sys
|
|
import cosmo
|
|
import decimal
|
|
import unittest
|
|
|
|
exit1 = cosmo.exit1
|
|
|
|
class BooTest(unittest.TestCase):
|
|
def test_boo(self):
|
|
# cosmo.ftrace()
|
|
# eval('0')
|
|
# exit1()
|
|
pass
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|