File: date.e

package info (click to toggle)
eglade 0.3.2-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 560 kB
  • ctags: 823
  • sloc: yacc: 429; makefile: 174; sh: 24; ansic: 9
file content (25 lines) | stat: -rw-r--r-- 353 bytes parent folder | download
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
indexing

	description: "DATE minimal support for showing today's date"
	author: "Oliver Elphick"
	date: "29th October 1999"
	cvs: "$Id: date.e,v 1.1 1999/10/30 06:20:03 olly Exp $"

class DATE

feature

	now: STRING is
		do
			!!Result.make(0)
			Result.from_external(datetime)
		end

feature {NONE}

	datetime: POINTER is
		external
			"C"
		end

end