Skip to content

Instantly share code, notes, and snippets.

@magiblot
magiblot / README.md
Last active February 24, 2025 14:15
Windows Console/MS-DOS keyboard input tester

Windows Console/MS-DOS keyboard input tester

  • To build for Windows, any compiler can be used.
  • To build for MS-DOS, use Borland C++.
@magiblot
magiblot / CMakeLists.txt
Last active July 22, 2021 18:47
Turbo Vision Snake Example
cmake_minimum_required(VERSION 3.5)
project(snake)
add_executable(snake snake.cc)
find_package(tvision CONFIG)
target_link_libraries(snake tvision::tvision)