Skip to content
This repository has been archived by the owner on Oct 3, 2020. It is now read-only.

Commit

Permalink
more skills
Browse files Browse the repository at this point in the history
  • Loading branch information
fulton committed Jan 8, 2020
1 parent cc6772b commit 35267a6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/java/com/andromeda/araserver/skills/Call.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.andromeda.araserver.skills

import java.util.*

class Call {
fun main(url:String){
val term: String
//parse for search term
val pairs =
ArrayList(listOf(*url.split("&").toTypedArray()))
term = pairs[0]
println(term)
}
}

0 comments on commit 35267a6

Please sign in to comment.