view ci/if_ver-1.vim @ 23626:e23ccc04025a v8.2.2355

patch 8.2.2355: stray test failure on Appveyor Commit: https://github.com/vim/vim/commit/97c6943e11516711541848e51db3cc2ace25bbb2 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jan 15 16:45:21 2021 +0100 patch 8.2.2355: stray test failure on Appveyor Problem: Stray test failure on Appveyor. Solution: Finish insert command.
author Bram Moolenaar <Bram@vim.org>
date Fri, 15 Jan 2021 17:00:05 +0100
parents 27ff44268da5
children 0878f0fd349b
line wrap: on
line source

" Print all interface versions for Ubuntu. Part 1.

if 1
  execute 'source' expand('<sfile>:h') .. '/if_ver-cmd.vim'

  echo "*** Interface versions ***\n"

  echo 'Lua:'
  PrintVer lua print(_VERSION)

  echo 'MzScheme:'
  PrintVer mzscheme (display (version))

  echo 'Perl:'
  PrintVer perl print $^V

  echo 'Ruby:'
  PrintVer ruby print RUBY_VERSION

  echo 'Tcl:'
  PrintVer tcl puts [info patchlevel]

  echo 'Python 2:'
  PrintVer python print sys.version
endif