summaryrefslogtreecommitdiffhomepage
path: root/mrblib/print.rb
blob: 3ebd77ee6ebf12c3adf801f169b5ad398abdb1fd (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
##
# Kernel
#
# ISO 15.3.1
module Kernel

  ##
  # Invoke method +print+ on STDOUT and passing +*args+
  #
  # ISO 15.3.1.2.10
  def print(*args)
    i = 0
    len = args.size
    while i < len
      __printstr__ args[i].to_s
      i += 1
    end
  end

  ##
  # Invoke method +puts+ on STDOUT and passing +*args*+
  #
  # ISO 15.3.1.2.11
  def puts(*args)
    i = 0
    len = args.size
    while i < len
      __printstr__ args[i].to_s
      __printstr__ "\n"
      i += 1
    end
    __printstr__ "\n" if len == 0
    nil
  end

  ##
  # Print human readable object description
  #
  # ISO 15.3.1.3.34
  def p(*args)
    i = 0
    len = args.size
    while i < len
      __printstr__ args[i].inspect
      __printstr__ "\n"
      i += 1
    end
    args[0]
  end

  ##
  # Invoke method +sprintf+ and pass +*args+ to it.
  # Pass return value to +print+ of STDOUT.
  def printf(*args)
    if Kernel.respond_to?(:sprintf)
      __printstr__(sprintf(*args))
    else
      raise NotImplementedError.new('sprintf not available')
    end
  end

  ##
  # +sprintf+ is defined in +src/sprintf.c+
  # This stub method is only to inform the user
  # that +sprintf+ isn't implemented.
  unless Kernel.respond_to?(:sprintf)
    def sprintf(*args)
      raise NotImplementedError.new('sprintf not available')
    end
  end
end