Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有:
def is_valid_cool_string(str) ... end
我想写一些类似的东西
is_valid_cool_string("Foobar")
谢谢!
你不需要任何东西来完成这项工作。:)
如果方法返回某些内容,请不要忘记打印结果。
puts is_valid_cool_string("Foobar")
或类似的东西
puts "Is valid: #{is_valid_cool_string("Foobar").inspect}"