This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.File | |
import java.io.InputStreamReader | |
import java.io.OutputStreamWriter | |
import java.net.HttpURLConnection | |
import java.net.URL | |
import java.net.URLEncoder | |
fun main() { | |
// Input File |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.File | |
import java.io.InputStreamReader | |
import java.io.OutputStreamWriter | |
import java.net.HttpURLConnection | |
import java.net.URL | |
import java.net.URLEncoder | |
fun main() { | |
// Input File |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main(args: Array<String>) | |
{ | |
// Fetch Input | |
val input = input() | |
// Iterate Chars | |
var total = 0 | |
var n = 0 | |
do | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fun main(args: Array<String>) | |
{ | |
// Fetch Input | |
val input = input() | |
// Iterate Chars | |
var total = 0 | |
var n = 0 | |
while(++ n < input.length) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
view the metadata with SOME_VAR expression included (i'm not seeing the @hint, @param or @return values for the first method) | |
then remove the SOME_VAR line altogether and run it again (then i am seeing the annotations correctly) | |
/* THIS IS OUR CLASS | |
"testClass.cfc" | |
*/ | |
component output = false | |
{ | |
SOME_VAR = "some value" |