blob: 57e32cd6ca1d8a56cd55410513a1c7af2b818d96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/************************************************
version.c -
$Author: matz $
$Revision: 1.5 $
$Date: 1995/01/12 08:54:54 $
created at: Thu Sep 30 20:08:01 JST 1993
Copyright (C) 1993-1995 Yukihiro Matsumoto
************************************************/
#include "ruby.h"
#include "version.h"
#include <stdio.h>
extern VALUE C_Kernel;
Init_version()
{
rb_define_const(C_Kernel, "VERSION", str_new2(RUBY_VERSION));
}
show_version()
{
fprintf(stderr, "ruby - version %s (%s)\n", RUBY_VERSION, VERSION_DATE);
}
show_copyright()
{
fprintf(stderr, "ruby - Copyright (C) 1993-1995 Yukihiro Matsumoto\n");
exit(0);
}
|