Instantly convert code snippets from Scala to Haskell with our free online code converter. Transform your code easily and accurately.
Learn how to use Claude Code the right way with our guide — so you can:
Eliminate Debugging Headaches
Claude understands entire codebases and delivers code that works the first time.
Write Code You Can Trust
Every snippet is production-grade, maintainable, and ready to ship.
Finish Projects 10x Faster
Move from idea to working product without weeks of trial and error.
Complete AI Coding Guide with Claude Code: $19(was $49)
Limited-time launch pricing—save 60%.
We prioritize your code's security and privacy. Your code is not stored on our servers and is only temporarily processed for conversion. We use OpenAI's secure servers for the conversion process, ensuring your code remains confidential.
Scala is a general-purpose programming language providing support for functional programming and a strong static type system.
Haskell is a purely functional programming language.
object PalindromeChecker {
def isPalindrome(str: String): Boolean = {
val clean = str.toLowerCase.filter(_.isLetterOrDigit)
clean == clean.reverse
}
def main(args: Array[String]): Unit = {
println(isPalindrome("A man, a plan, a canal: Panama")) // true
println(isPalindrome("race a car")) // false
}
}
import Data.Char (isAlphaNum, toLower)
isPalindrome :: String -> Bool
isPalindrome str = clean == reverse clean
where clean = map toLower $ filter isAlphaNum str
main :: IO ()
main = do
print $ isPalindrome "A man, a plan, a canal: Panama" -- True
print $ isPalindrome "race a car" -- False
object BubbleSort {
def bubbleSort(arr: Array[Int]): Array[Int] = {
val n = arr.length
for (i <- 0 until n; j <- 0 until n - i - 1) {
if (arr(j) > arr(j + 1)) {
val temp = arr(j)
arr(j) = arr(j + 1)
arr(j + 1) = temp
}
}
arr
}
def main(args: Array[String]): Unit = {
val arr = Array(64, 34, 25, 12, 22, 11, 90)
println(bubbleSort(arr).mkString(" "))
}
}
bubbleSort :: Ord a => [a] -> [a]
bubbleSort xs = foldr (\_ -> bubble) xs [1..length xs - 1]
where
bubble [] = []
bubble [x] = [x]
bubble (x:y:xs)
| x > y = y : bubble (x:xs)
| otherwise = x : bubble (y:xs)
main :: IO ()
main = print $ bubbleSort [64, 34, 25, 12, 22, 11, 90]
Convert Scala to Python
Open ConverterConvert Scala to JavaScript
Open ConverterConvert Scala to TypeScript
Open ConverterConvert Scala to Java
Open ConverterConvert Scala to C
Open ConverterConvert Scala to C++
Open ConverterConvert Scala to C#
Open ConverterConvert Scala to Go
Open ConverterConvert Scala to Dart
Open ConverterConvert Scala to Ruby
Open ConverterConvert Scala to Swift
Open ConverterConvert Scala to Kotlin
Open ConverterConvert Scala to Rust
Open ConverterConvert Scala to PHP
Open ConverterConvert Scala to R
Open ConverterConvert Scala to Julia
Open ConverterConvert Scala to MATLAB
Open ConverterConvert Scala to Lua
Open ConverterConvert Scala to Assembly
Open ConverterConvert Scala to Perl
Open ConverterConvert Scala to Groovy
Open ConverterConvert Scala to Elixir
Open ConverterConvert Scala to F#
Open ConverterConvert Scala to Clojure
Open ConverterConvert Scala to Delphi
Open Converter