rspec/rules/S122/vb6/rule.adoc

23 lines
374 B
Plaintext
Raw Normal View History

2020-06-30 10:16:44 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
sampleString = "Hello World" : MsgBox(sampleString)
----
== Compliant Solution
----
sampleString = "Hello World"
MsgBox(sampleString)
----
ifdef::env-github,rspecator-view[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]